|
热门文章 |
|
|
|
|
点击文字选中checkbox选框 |
来源:中国站长天空 更新时间:2009/12/3 1:37:16 阅读次数: 我要投稿 |
|
<html> <head> <title>点击文字选中checkbox选框</title> <meta http-equiv="content-Type" content="text/html;charset=gb2312"> <!--把下面代码加到<head>与</head>之间--> <script language="javascript"> function selectcheckbox() { document.form1.check1.checked=!document.form1.check1.checked; } </script> </head> <body> <!--把下面代码加到<body>与</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> |
|
上一篇文章: 给文本框添加灰色提示文字下一篇文章: 检测是否全部为中文 |
|
|