JQuery获取第几个元素和判断元素在第几个
1个回答
展开全部
demo如下:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>testJquery</title>
<script src="js/jquery-1.8.3.js" type="text/javascript" charset="utf-8"></script>
</head>
<body>
<input type="text" id="input0" value="input元素0" />
<input type="button" id="input1" value="input元素1" />
<input type="checkbox" id="input2" value="input元素2" />
<input type="hidden" id="input3" value="input元素3" />
<br>
<button type="button" onclick="getInputByIndex(0)">获取第1个input元素</button>
<button type="button" onclick="getInputByIndex(1)">获取第2个input元素</button>
<button type="button" onclick="getInputByIndex(2)">获取第3个input元素</button>
<button type="button" onclick="getInputByIndex(3)">获取第4个input元素</button><br>
<button type="button" onclick="JudgeIndex('input3')">根据id判断元素input3的位置</button>
<script type="text/javascript">
function getInputByIndex(n){
var inps=$("input");
alert($(inps[n]).val()+" , "+$(inps[n]).prop("type"));
}
function JudgeIndex(elementId){
var inps=$("input");
var indx=-1;
for(var i in inps){
if(inps[i].id==elementId){
indx=i;
}
}
if(indx>-1){
alert("元素["+elementId+"]位置是["+indx+"]");
}else{
alert("元素["+elementId+"]未找到!");
}
}
</script>
</body>
</html>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询