gpt4 book ai didi

javascript - jquery 选择文本

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:38:41 24 4
gpt4 key购买 nike

<div>select this<strong>dfdfdf</strong></div>
<div><span>something</span>select this<strong>dfdfdf</strong></div>

我如何使用 jquery 或仅使用 javascript 来选择 div 标签的值但不包含任何子元素

//output
select this

最佳答案

$("div").contents().each(function(i) {
//the function is applied on the node.
//therefore, the `this` keyword is the current node.
//check if the current element is a text node, if so do something with it
});

关于javascript - jquery 选择文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/727902/

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