gpt4 book ai didi

javascript - Jquery Index 报告错误的索引

转载 作者:行者123 更新时间:2023-11-29 19:13:40 26 4
gpt4 key购买 nike

HTML:

<!DOCTYPE html>
<html>
<head>
<link href="https://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css" rel="stylesheet" type="text/css" />
<script src="https://code.jquery.com/jquery-1.11.3.js"></script>
<script src="https://code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<div id="radioButtonSet">
<input type="radio" id="radio-value" name="dataChange" value="value" checked="checked" ><label for="radio-value">Value</label>
<input type="radio" id="radio-percentage" name="dataChange" value="percent" ><label for="radio-percentage">Percentage</label>
</div>
</body>
</html>

Javascript:

$("input[type=radio][name=dataChange]").on("change", function(){
console.log($("input[type=radio][name=dataChange]").filter(":checked").index())
});

我希望索引为 0 和 1,但它们是 0 和 2。为什么?

演示:http://jsbin.com/xifutarumu/edit?html,js,console,output

最佳答案

来自 the docs : "如果没有参数传递给 .index() 方法,返回值是一个整数,指示第一个元素在 jQuery 对象中相对于其兄弟元素的位置。"

<div id="radioButtonSet">
<input type="radio" id="radio-value" name="dataChange" value="value" checked="checked" >
<label for="radio-value">Value</label>
<input type="radio" id="radio-percentage" name="dataChange" value="percent" >
<label for="radio-percentage">Percentage</label>
</div>

radio-percentage 输入是其兄弟项中的第三个,因此索引为二。

关于javascript - Jquery Index 报告错误的索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36900377/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com