我有这个 html 行:
<nobr title="New" class="testClass">
<h1>ABC</h1>
</nobr>
如何删除 h1 中的文本或删除整个 h1 标签?
我最后一次尝试:
$("nobr.testClass > h1").text('');
但这不起作用
以下删除h1
元素:
$("nobr.testClass > h1").remove();
不过,您的代码应该可以正常工作。你的错误在别处。
尝试这个:
$(".testClass h1").text('');
并删除:
$(".testClass h1").remove();
删除标签
$("nobr.testClass > h1").remove();
清空标签
$("nobr.testClass > h1").empty();