日期:2014-05-20 浏览次数:20804 次
<input type="checkbox" checked name="co" value="01" id="co1"/><label for="co1">私营企业</label>
<input type="checkbox" name="co" value="02" id="co2"/><label for="co2">个体</label>
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$("input[name='co'][checked]").next().html();
});
</script>
</head>
<body>
<input type="checkbox" checked name="co" value="01" id="co1"/><label for="co1">私营企业</label>
<input type="checkbox" name="co" value="02" id="co2"/><label for="co2">个体</label>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js">
</script>
<script>
$(document).ready(function(){
var html=$("input:checked").nextAll("label").html();
alert(html);
});
</script>
</head>
<body>
<input type="checkbox" name="co" value="01" id="co1"/><label for="co1">私营企业</label>
<input type="checkbox" checked name="co" value="02" id="co2"/><label for="co2">个体</label>
</body>
</html>