jQuery 获取
如何提醒所点击的
项目的 ID?<ul id='myid'>
<li id='1'>First</li>
<li id='2'>Second</li>
<li id='3'>Third</li>
<li id='4'>Fourth</li>
<li id='5'>Fifth</li>
</ul>
(任何可以替换 id 的东西都可能是值,或者其他东西也可以。)
How can I alert the id of the <li>
item clicked?
<ul id='myid'>
<li id='1'>First</li>
<li id='2'>Second</li>
<li id='3'>Third</li>
<li id='4'>Fourth</li>
<li id='5'>Fifth</li>
</ul>
(Anything that can replace the id may be value or something else will also work.)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果您在
li
元素内有多个li
元素,那么这肯定会对您有所帮助,我已经检查过它并且它有效......If You Have Multiple
li
elements inside anli
element then this will definitely help you, and i have checked it and it works....后可以使用此方法获取相应 li 的值
点击HTML:-
JS:-
CSS:-
you can get the value of the respective li by using this method after click
HTML:-
JS:-
CSS:-
如果你稍微改变你的 html 代码 - 删除 ids
那么你想要的 jquery 代码是...
你不需要放置任何 id,只需继续添加 li 项目即可。
查看演示
有用的链接
If you change your html code a bit - remove the ids
Then the jquery code you want is...
You don't need to place any ids, just keep on adding li items.
Take a look at demo
Useful links
如果您正在谈论用某些内容替换 ID:
此处演示。 公平地说,您应该先尝试一下阅读文档:
If you are talking about replacing the ID with something:
Demo here. And to be fair, you should have first tried reading the documentation: