点击文字选中checkbox选框
以下是代码片段: <html>
<head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title>轩奇科技|JsCode.CN|---点击文字选中checkbox选框</title> </head>
<script language="javascript"> function selectcheckbox() { document.form1.check1.checked=!document.form1.check1.checked; } </script> <body>
<form name="form1" method="post"> <input type="checkbox" name="check1" value="0" style="cursor:hand" /> <a onclick="selectcheckbox()" style="cursor:hand">请点击我</a> </form>
</body>
</html>
检测代码效果 请进
|