0

我有一些复选框列表,我试图自定义设计。但是我的编码不起作用。这是我的示例代码:

我的 CSS 是:

input[type="checkbox"]{
display:none;
}
input[type="checkbox"] + span{
width:15px;
height:15px;
background:url(../img/uncheck_box.png) no-repeat;
display:inline-block;
}
input[type="checkbox"]:checked + span{
background:url(../img/check_box.png) no-repeat;
}

我的 HTML 是:

<input type="checkbox" id="1" /><span></span><label for="1">AAAA</label><br />
<input type="checkbox" id="2" /><span></span><label for="2">BBBB</label><br />
<input type="checkbox" id="3" /><span></span><label for="3">CCCC</label><br />
<input type="checkbox" id="4" /><span></span><label for="4">DDDD</label><br />
<input type="checkbox" id="5" /><span></span><label for="5">EEEE</label><br />
<input type="checkbox" id="6" /><span></span><label for="6">FFFF</label>
4

1 回答 1

0
<html lang="en">
<head>
<meta charset="utf-8" />
<title>jQuery UI Button - Checkboxes</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.2/themes/smoothness/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.2/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css" />
<script>
$(function() {
$( "#check" ).button();
$( "#format" ).buttonset();
});
</script>
<style>
#format { margin-top: 2em; }
</style>
</head>
<body>
<input type="checkbox" id="check" /><label for="check">Toggle</label>
<div id="format">
<input type="checkbox" id="check1" /><label for="check1">B</label>
<input type="checkbox" id="check2" /><label for="check2">I</label>
<input type="checkbox" id="check3" /><label for="check3">U</label>
</div>
</body>
</html>

我认为你需要这个:这是最好的练习。

于 2013-03-21T11:44:51.927 回答