循环查找标签,然后更改文本

发布于 2024-11-27 00:24:03 字数 711 浏览 0 评论 0原文

我有由 CMS 生成的以下标记:

<div class="product">
<div class="blk">
  <span>
    <br>
    <label>Size</label>
    <select onchange="" name="">
  </span>
  <span>
    <br>
    <label>Colour</label>
    <select onchange="" name="">
  </span>
</div>
</div>

每当出现“尺寸”时,我都需要替换标签文本。我尝试了各种代码...例如:

$('.productOptionsBlock .blk span label').each(function() {
    if ($(this).('label:contains("Size")').length > 0) {
        $(this).replaceWith('<span>Alternative text</span>');
    }
});

但我无法让替代品工作。我对使用 $(this) 以及如何附加标签内容感到困惑......

I have the following markup being generated by a CMS:

<div class="product">
<div class="blk">
  <span>
    <br>
    <label>Size</label>
    <select onchange="" name="">
  </span>
  <span>
    <br>
    <label>Colour</label>
    <select onchange="" name="">
  </span>
</div>
</div>

I need to replace the label text whenever 'Size' is present. I have tried a variety of code... such as:

$('.productOptionsBlock .blk span label').each(function() {
    if ($(this).('label:contains("Size")').length > 0) {
        $(this).replaceWith('<span>Alternative text</span>');
    }
});

But I can't get the replacement to work. I get confused with using $(this) and how to attach the label contents...

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

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

发布评论

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

评论(2

演多会厌 2024-12-04 00:24:03

无需循环执行此任务,只需将相同的内容应用于选择器即可:

$('.productOptionsBlock .blk span label:contains("Size")').replaceWith('<span>Alternative text</span>');

查看演示

No need to loop for this task, you just apply the same thing to the selector:

$('.productOptionsBlock .blk span label:contains("Size")').replaceWith('<span>Alternative text</span>');

Check a demo

‘画卷フ 2024-12-04 00:24:03

$(this).('label:contains("Size")') 不执行任何操作。

也许您的意思是:

if ($(this).is('label:contains("Size")')) {

不过,您不需要显式循环:

$('.productOptionsBlock .blk span label:contains("Size")')
   .replaceWith('<span>Alternative text</span>');

$(this).('label:contains("Size")') doesn't do anything.

Perhaps you meant:

if ($(this).is('label:contains("Size")')) {

You don't need the explicit loop, though:

$('.productOptionsBlock .blk span label:contains("Size")')
   .replaceWith('<span>Alternative text</span>');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文