在 jQuery 中执行选择 $(this)

发布于 2024-11-25 17:15:59 字数 769 浏览 1 评论 0原文

我在 li 标签上执行 $.eachli 标签包含不同的标签。如何访问当前迭代中的标签?

示例代码:

jQuery

$('.list li').each(function () {
   // I tried, but didnt work: $(this).filter(".aside h4 a").html("Hello");
   $(this)._HERE TRYING TO ACCESS CHILDREN_.html("Hello");
});

HTML

<ul class="list">
   <li>
       <div class="aside right">
       <h4><a href="#">I want to change this text on each iteration</a></h4>
   </li>
   <li>
       <div class="aside right">
       <h4><a href="#">I want to change this text on each iteration</a></h4>
   </li>
</ul>

I perform $.each on li tags. li tags contain different tags. How do I access tags from the current iteration?

Example code:

jQuery

$('.list li').each(function () {
   // I tried, but didnt work: $(this).filter(".aside h4 a").html("Hello");
   $(this)._HERE TRYING TO ACCESS CHILDREN_.html("Hello");
});

HTML

<ul class="list">
   <li>
       <div class="aside right">
       <h4><a href="#">I want to change this text on each iteration</a></h4>
   </li>
   <li>
       <div class="aside right">
       <h4><a href="#">I want to change this text on each iteration</a></h4>
   </li>
</ul>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

使用 find 方法查找所选元素内的元素:

$('.list li').each(function () {
   $(this).find("a").html("Hello");
});

Use find method to find elements inside the selected one:

$('.list li').each(function () {
   $(this).find("a").html("Hello");
});
温柔一刀 2024-12-02 17:15:59

.children() 应该做你正在寻找的事情。

另外,关闭 li 内的 div

.children() should do what you are looking for.

Also, close the div inside the li.

━╋う一瞬間旳綻放 2024-12-02 17:15:59

使用 查找

 $(this).find("a").html("Hello");

use find

 $(this).find("a").html("Hello");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文