我是靠谱客的博主 从容面包,最近开发中收集的这篇文章主要介绍模拟复选框打钩变色,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<meta name="author" content="" />
<meta name="keywords" content="" />
<meta name="description" content="" />
<link rel="stylesheet" type="text/css" href="" />
<style type="text/css">
.cbox{display:block;width:16px;height:16px;border:1px solid #ccc;background:#fff;}
.cbox.checked{background:#f00;}
.cbox.checked:after{content:"√"}
</style>
<script type="text/javascript"></script>
</head>
<body>
<span class="cbox" onclick="this.className=/checked/ig.test(this.className)?this.className.replace('checked',''):(this.className+' checked')">
</span>
</body>
</html>

 

最后

以上就是从容面包为你收集整理的模拟复选框打钩变色的全部内容,希望文章能够帮你解决模拟复选框打钩变色所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(45)

评论列表共有 0 条评论

立即
投稿
返回
顶部