gpt4 book ai didi

jquery - css 或 jquery 选择器排除子项

转载 作者:太空宇宙 更新时间:2023-11-03 20:54:26 27 4
gpt4 key购买 nike

如何在这里选择标题而不是副标题:

<h1 id="banner">
This is the Title
<span id="subtitle">and the subtitle</span>
</h1>

我想做类似的事情

h1 < span#subtitle {font-weight:bold}

h1:not(#subtitle) {font-weight:bold}

最佳答案

要仅提取标题文本而不提取副标题,请使用以下命令:

var text = $("#banner").contents().filter(function () {
if (this.nodeType == 3) { // Text Node
return this;
}
})[0];

DEMO .

关于jquery - css 或 jquery 选择器排除子项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12229475/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com