gpt4 book ai didi

javascript - 使用 jQuery 获取列表项的值

转载 作者:可可西里 更新时间:2023-11-01 02:16:28 28 4
gpt4 key购买 nike

如何用jQuery获取列表项onClick 事件的值和索引?
例如:

<ul id='uItem'>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
</ul>

最佳答案

结合使用.index().text() (或 .html(),如果您愿意):

$('#uItem li').click(function() {
var index = $(this).index();
var text = $(this).text();
alert('Index is: ' + index + ' and text is ' + text);
});

关于javascript - 使用 jQuery 获取列表项的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5548827/

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