3

我有这个 html 行:

<nobr title="New" class="testClass">
       <h1>ABC</h1>
</nobr>

如何删除 h1 中的文本或删除整个 h1 标签?

我最后一次尝试:

$("nobr.testClass > h1").text('');

但这不起作用

4

3 回答 3

6

以下删除h1元素:

$("nobr.testClass > h1").remove();

不过,您的代码应该可以正常工作。你的错误在别处。

于 2012-11-27T14:54:23.617 回答
4

尝试这个:

   $(".testClass h1").text('');

并删除:

   $(".testClass h1").remove();
于 2012-11-27T14:56:00.120 回答
2

删除标签

$("nobr.testClass > h1").remove();

清空标签

$("nobr.testClass > h1").empty();
于 2012-11-27T14:56:23.983 回答