私はテキストボックス(myinput)で値が空でない場合にチェックボックスのグループを有効にしようとすると、グループを無効にしますが、期待通りに機能しません。私は間違って何をしていますか?テキストボックスの値に基づいてチェックボックスを有効にする方法は?
HTML
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script src="Scripts/jquery-1.4.1.min.js" type="text/javascript"></script>
<script type="text/javascript">
function enable_cb() {
if ($(this).val() != "") {
$("input.group1").removeAttr("disabled");
}
else {
$("input.group1").attr("disabled", true);
}
}
</script>
</head>
<body>
<form name="frmChkForm" id="frmChkForm">
<input id="mytext" type="text" onkeydown="enable_cb(this);" />
<input type="checkbox" name="chk9[120]" class="group1">
<input type="checkbox" name="chk9[140]" class="group1">
<input type="checkbox" name="chk9[150]" class="group1">
</form>
</body>
</html>
さらに、jQueryからイベントリスナーを割り当て、 '$(this)'に固執してください。 –