gpt4 book ai didi

javascript - 在 jQuery 中从 DIV 中获取文本

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

我有一个如下类型的 DIV:

 <div class='entry'>
<p class='entry-text'>собаки играют вместе <a title="Search private" class="app-context-link" href="/contexts/private">@private</a></p>
<p class='entry-date'>14172869383540000</p>
<p class='entry-menu'>&nbsp;&nbsp;&nbsp;<a class="app-link-menu" href="#">show filtered</a></p>
<div class='separator'>&nbsp;</div>
</div>

我有一个代码可以取出 DIV 的内容,如下所示,但是我该如何更改它以便它只取出“entry-text”类中的文本?

  $(".entry").on('dblclick', function(e) {

e.preventDefault();

// Get the statement into the edit box at the top
$("#statement").val(e.currentTarget.innerText);
}

谢谢!

最佳答案

应该这样做:

$(".entry").on('dblclick', function(e) {
e.preventDefault();

// Get the statement into the edit box at the top
$("#statement").val($('.entry-text', e.currentTarget).text());
}

$('.entry-text', e.currentTarget) 选择 e.currentTarget 元素中具有 entry-text 类的所有元素然后对其调用 .text()

来源:

关于javascript - 在 jQuery 中从 DIV 中获取文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27214788/

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