为了账号安全,请及时绑定邮箱和手机立即绑定

如何获取点击元素的值

如何获取点击元素的值

一只甜甜圈 2023-09-25 16:22:37
我试图通过 jQuery 在每次单击锚标记“show”时获取 li 元素的文本(1、2、3...),但似乎无法使其工作。这就是我正在处理的:HTML:<ul><li class="item_id">1</li><a class="show" href="#">SHOW</a></ul><ul><li class="item_id">2</li><a class="show" href="#">SHOW</a></ul><ul><li class="item_id">3</li><a class="show" href="#">SHOW</a></ul>JavaScript:/**This shows all values on each click and not only the current one**/$("a.show").click(function(){  $('li.item_id').each(function() {      var item_id = $(this).text();          alert(testimonial_id);                            });});/**This shows the first value on each click and not only the current one**/$("a.show").click(function(){    var item_id = $("li.item_id").text();    alert(item_id);});提前致谢!
查看完整描述

目前暂无任何回答

  • 0 回答
  • 0 关注
  • 111 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信