使用js实现多选框
程序员文章站
2022-07-13 23:04:45
...
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>多选框</title>
<style>
* {
margin: 0px;
padding: 0px;
}
ul {
list-style: none;
display: flex;
}
</style>
</head>
<body>
<form action="">
<ul>
<li>
西瓜<input type="checkbox">
</li>
<li>
苹果<input type="checkbox">
</li>
<li>
葡萄<input type="checkbox">
</li>
<li>
榴莲<input type="checkbox">
</li>
</ul>
<input type="button" value="全选" id="all_btn">
<input type="button" value="全不选" id="notall_btn">
<input type="button" value="反选" id="invert">
</form>
<script>
let all_btn = document.getElementById("all_btn");
let notall_btn = document.getElementById("notall_btn");
let invert = document.getElementById("invert");
let check = document.querySelectorAll(`input[type="checkbox"]`);
all_btn.onclick = function () {
check.forEach((item) => {
item.checked = true;
})
};
notall_btn.onclick = function () {
check.forEach((item) => {
item.checked = false;
})
};
invert.onclick = function () {
check.forEach((item) => {
// item.checked ? item.checked = true : item.checked = false;
item.checked=!item.checked;
})
};
</script>
</body>
</html>
下一篇: EXT组件的配置属性
推荐阅读
-
详解JS: reduce方法实现 webpack多文件入口
-
使用 js 简单的实现 bind、call 、aplly代码实例
-
使用JavaScript实现node.js中的path.join方法
-
使用CSS3实现多列布局与多背景的技巧
-
vue中使用cookies和crypto-js实现记住密码和加密的方法
-
js使用Promise实现简单的Ajax缓存
-
js使用cookie实现记住用户名功能示例
-
Java实现拖拽文件上传dropzone.js的简单使用示例代码
-
使用 Node.js 实现图片的动态裁切及算法实例代码详解
-
Three.js使用THREE.TextGeometry创建三维文本实现教程