20,396
社区成员
发帖
与我相关
我的任务
分享
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>对象each遍历</title>
<script type="text/javascript" src="./jquery-1.11.3.min.js"></script>
<script type="text/javascript">
$("document").ready(function(){
$("input:not(input[type=button])").each(function(k,v){
console.log(k+"----"+$(v).val());
});
})
</script>
</head>
<body>
<div>
<input type="checkbox" name="aihao[]" class="ah" value="1">足球
<input type="checkbox" name="aihao[]" class="ah" value="2">篮球
<input type="checkbox" name="aihao[]" class="ah" value="3">排球
</div>
<input type="button" value="遍历" onclick="f1();">
</body>
</html>

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>对象each遍历</title>
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<script type="text/javascript">
$("document").ready(function(){
$("input:not(input[type=button])").each(function(k,v){
//console.log(k+"----"+$(v).val());
//console.log(k+"----"+$(v).attr('title'));
console.log(k+"----"+$(v).parent().text().split("\n")[k+1].trim());
});
})
</script>
</head>
<body>
<div>
<input type="checkbox" name="aihao[]" class="ah" value="1">足球
<input type="checkbox" name="aihao[]" class="ah" value="2">篮球
<input type="checkbox" name="aihao[]" class="ah" value="3">排球
</div>
<input type="button" value="遍历" onclick="f1();">
</body>
</html>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>对象each遍历</title>
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<script type="text/javascript">
$("document").ready(function(){
$("input:not(input[type=button])").each(function(k,v){
//console.log(k+"----"+$(v).val());
console.log(k+"----"+$(v).attr('title'));
});
})
</script>
</head>
<body>
<div>
<input type="checkbox" name="aihao[]" class="ah" title="足球" value="1">足球
<input type="checkbox" name="aihao[]" class="ah" title="篮球" value="2">篮球
<input type="checkbox" name="aihao[]" class="ah" title="排球" value="3">排球
</div>
<input type="button" value="遍历" onclick="f1();">
</body>
</html>