我不想做任何奇怪的事情......只是希望「noshowuntilchangevelocity」類的內容在顯示和隱藏特定複選框狀態更改時切換。在複選框狀態變化上切換文本
$(document).ready(function()
{
$("input#velocity").change(function()
{
$('#noshowuntilchangevelocity').toggle();
});
});
<input id="velocity" name="velocity" type="checkbox"value="Y" checked>
<div id="noshowuntilchangevelocity"style="display: hidden;">
<p class="bolder">You are changing this selection</p>
</div>
添加JsFiddle鏈接並提出問題 – 2013-04-04 20:48:00
哪個版本的jQuery? – hjpotter92 2013-04-04 20:49:38
它正在爲我工作,因爲它是http://jsfiddle.net/ZJmw3/ – hjpotter92 2013-04-04 20:51:59