これは私のコードです:-
<html>
<head>
<title>(Type a title for your page here)</title>
<script language="JavaScript">
<!--
function enable_text(status)
{
status=!status;
document.f1.other_text.disabled = status;
}
//-->
</script>
</head>
<body onload=enable_text(false);>
<form name=f1 method=post>
<input type="checkbox" name="others" onclick="enable_text(this.checked)" >Others
<iframe name="other_text" src="www.google.com"></iframe>
</form>
</body>
</html>
今、私はチェックボックスをクリックしているのと
同じように、チェックボックスをオンにしないでチェックボックス
をオンにします。チェックボックスをクリックするとiframeが無効になり、チェックアウトしてから有効にすると設定したい