我在页面上呈现了以下HTML:

<tr>
    <td colspan="100" nowrap="nowrap" class="ms-gb">
        <a href="javascript:" onclick="javascript:ExpCollGroup('0-1_', 'img_0-1_',event, false);return false;">
            <span class="commentcollapse-iconouter">
                <img class="commentcollapse-icon" src="Some Image" alt="collapse" id="img_0-1_" data-themekey="#">
            </span>
            iPad_Category
        </a>
         : AL Mobile
        <span style="font-weight: lighter; display: inline-block;">(7)
        </span>
    </td>
</tr>


javascript - 如果使用jQuery在Element的子元素中找到,则替换文本-LMLPHP

现在我的问题是:如果我想在jQuery的帮助下删除关键字iPad_Category,该怎么办?另外,如何用新的文本替换此类文本?例如,应将: AL-Mobile替换为AL Mobile,用jQuery或JavaScript实现此最佳方法是什么?

编辑:
我无法从元素中删除span标记,因为它具有必要的事件绑定。

任何帮助将非常感激。

最佳答案

您可以获取目标元素的HTML代码,然后使用replace()方法替换并删除所需的部分,最后返回带有替换数据的新HTML并覆盖原始HTML,例如:



var new_structure = $("#my-div").html().replace(': AL Mobile', 'AL Mobile').replace('iPad_Category', '');

$("#my-div").html(new_structure);

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<table id="my-div">
  <tr>
    <td colspan="100" nowrap="nowrap" class="ms-gb">
      <a href="javascript:" onclick="javascript:ExpCollGroup('0-1_', 'img_0-1_',event, false);return false;">
        <span class="commentcollapse-iconouter">
                <img class="commentcollapse-icon" src="Some Image" alt="collapse" id="img_0-1_" data-themekey="#">
            </span> iPad_Category
      </a>
      : AL Mobile
      <span style="font-weight: lighter; display: inline-block;">(7)
        </span>
    </td>
  </tr>
</table>

关于javascript - 如果使用jQuery在Element的子元素中找到,则替换文本,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52183754/

10-16 18:04