我正在尝试根据复选框显示/隐藏 html 表单的一部分。这是我拥有的精华代码:
<script src="/js/jquery.js"></script>
<script language="JavaScript">
function toggle(className){
var $input = $(this);
if($(this).prop('checked'))
$(className).show();
else
$(className).hide();
}
</script>
<fieldset><legend>Check Here
<input type="checkbox" onclick="toggle('.myClass')" ></legend>
<span class="myClass">
<p>This is the text.</p>
</span>
</fieldset>
当您单击复选框时,跨度将被隐藏并且不会返回。我也用过$(this).is(':checked')
。无论是否检查,它似乎都$(this).prop('checked')
在评估为假。我最好的猜测是我使用$(this)
不正确。我在这里想念什么?