当一个检查箱被点击时,我想转往另一页。
<script type="text/javascript"><!--
$(document).ready(function(){
jQuery(".cbno").click(function(e){
e.preventDefault();
alert( test );
alert(this.val());
// window.location = this.val();
});
});
//-->
</script>
<input type="checkbox" class="cbno" name="content" value="/map/?filter=all" />
Pretty simple - but I cannot figure out why the second alert does not produce any output? Internet Explorer says: "The object does not support the method val".
如果我使用的话,它就发挥了作用。 得到Attribute(价值)——为什么不与jquery val(价值)合作?