0
如果選中該複選框,則將選定值顯示爲文字 如何使其顯示一個複選框,其旁邊出現文字和說明。如何使用選定的值和說明顯示覆選框
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script type="text/javascript" src="http://code.jquery.com/ui/1.10.2/jquery-ui.js"></script>
<link rel="stylesheet" type="text/css" href="http://code.jquery.com/ui/1.9.1/themes/base/jquery-ui.css">
<script type="text/javascript">
$(document).ready(function() {
$(document).on("click", ":checkbox", function (e) {
if ($(this).is(':checked')) {
var checkbox = $("#sample").prepend('<div id="anotherdiv">' + $(this).attr('value') + '</div>');
$("#sample").prepend(checkbox);
}
else {
$('#anotherdiv').remove();
}
});
});
</script>
</head>
<body class="center" style= "margin-top: 150px;">
<div id="sample"></div>
<input type="checkbox" name="vehicle" value="Bike">I have a bike<br>
</body>
</html>
你想要這個http://jsfiddle.net/aamir/DtuA5/1/?只用CSS來完成。選中每個複選框以查看複選框旁邊的值。 –