良い一日!基本的に、チェックボックスをクリックするとテキストボックスが表示され、クリックしないと消えます。ここに JSFiddle http://jsfiddle.net/GBSZ8/2/があり、問題なく動作します。しかし、check.phpとして保存すると、チェックボックスをクリックしてもテキストボックスが表示されません。
<html>
<head>
<script>
$('#supplied').live('change', function(){
if ( $(this).is(':checked') ) {
$('#date').show();
} else {
$('#date').hide();
}
});
</script>
</head>
<body>
<input type="checkbox" name="supplied" id="supplied" value="supplied" class="aboveage2" />
<ul id="date" style="display:none">
<li><input id="start" name="start" size="5" type="text" class="small" value="1" /></li>
</ul>
</body>
</html>
私を助けてください。ありがとうございました!