js获取标签下标
Posted 一路向前
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js获取标签下标相关的知识,希望对你有一定的参考价值。
<body> <div class="titTab"> <span>低</span> <span>中</span> <span class="select">高</span> </div>
<input type="button" value="获取下标" class="target"/>
</body>
$(".target").click(function(){ //方法一 注意空格与非空格 var index = $(‘.titTab span.select‘).index(); //方法二 //var index = $(‘.titTab .select‘).index(); alert("index:"+index);//弹出index:2
});
以上是关于js获取标签下标的主要内容,如果未能解决你的问题,请参考以下文章
关于js----------------分享前端开发常用代码片段
如果标签存在,beautifulsoup 从片段中获取最后一个标签