gpt4 book ai didi

javascript - 使用 jQuery 从 div 中删除特定内容?

转载 作者:搜寻专家 更新时间:2023-11-01 04:52:54 25 4
gpt4 key购买 nike

您可以使用 jQuery 从元素中删除特定内容吗?

例如,如果我有

<p>Hello, this is a test</p> 

我可以把它变成

<p>this is a test</p>

使用 jQuery(或任何 Javascript)

请记住,我只想删除“你好”,所以

$(p).innerHTML("this is a test");

不会工作

最佳答案

var str = $('p').text()
str.replace('Hello,','');
$('p').text(str);

欲了解更多信息,请访问: https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/String/replace

关于javascript - 使用 jQuery 从 div 中删除特定内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7302990/

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