1 Star 0 Fork 0

龚贤/jquery_space

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
文档处理-包裹.html 925 Bytes
一键复制 编辑 原始数据 按行查看 历史
龚贤 提交于 2020-11-15 16:39 . 第一个版本
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.icheckbox{
display: inline-block;
}
.icheckbox input{
display: none;
}
.icheckbox span{
display: inline-block;
width: 24px;
height: 24px;
border: 1px solid #000;
border-radius: 4px;
vertical-align: middle;
cursor: pointer;
text-align: center;
font-size: 18px;
}
.icheckbox input:checked + span::before{
content: "✔";
}
</style>
</head>
<body>
<input type="checkbox"> 篮球
<input type="checkbox"> 足球
<input type="checkbox"> 排球
<script src="js/jquery3.5.js"></script>
<script>
$(':checkbox').each(function(){
var text = this.nextSibling;
$(this).wrap('<label class="icheckbox"/>').parent().append('<span/>', text);
})
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/gx0513/jquery_space.git
git@gitee.com:gx0513/jquery_space.git
gx0513
jquery_space
jquery_space
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385