欢迎访问服务器技术网-www.fuwuqijishu.com

Checkbox checked 属性

JavaScript fuwuqijishu 2年前 (2022-09-04) 27次浏览 0个评论 扫描二维码
文章目录[隐藏]

Checkbox checked 属性

Checkbox 对象


定义和用法

checked 属性设置或返回 checkbox 是否应被选中。

语法

设置 checked 属性:

checkboxObject.checked=true|false

返回 checked 属性:

checkboxObject.checked


浏览器支持

所有主要浏览器都支持 checked 属性


实例

实例

下面的例子可设置该 checkbox 的状态:

<!DOCTYPE html>
<html>
<head>
<meta charset=”utf-8″>
<title>菜鸟教程(runoob.com)</title>
<script>
function check(){
    document.getElementById(“check1”).checked=true
}
function uncheck(){
  document.getElementById(“check1”).checked=false
}
</script>
</head>
<body>

<form>
<input type=”checkbox” id=”check1″>你喜欢夏天吗?
</form>
<button onclick=”check()”>确认选择框</button>
<button onclick=”uncheck()”>不确认选择框</button>

</body>
</html>


更多实例

Checkbox – 把文本转换为大写

一个表单中的若干个 checkbox


Checkbox 对象

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2514.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900