gpt4 book ai didi

jquery - 将 word 替换为 jQuery

转载 作者:行者123 更新时间:2023-12-01 06:21:03 25 4
gpt4 key购买 nike

我的大部分页面上都有“Hello”一词,我想将其更改为“Welcome”。是否可能,如果可以,如何用 jQuery 替换这些单词?

Hello
<p>Hello user Jack</p>
<div>Hell ow you from us
<h1>12344 Hello</h1>
<div>Hellow</div>
</div>
<script src="jquery-1.5.1.min.js" type="text/javascript"></script>

最佳答案

好吧,这个片段就可以做到:

$('body, body *')
.contents()
.filter(function() {
return this.nodeType == Node.TEXT_NODE
&& this.nodeValue.indexOf('Hello') >= 0;
}).each(function() {
this.nodeValue = this.nodeValue.replace(/\bHello\b/g, 'Welcome');
});

我真的不建议使用它,但很高兴知道它在紧要关头是可能的。

它的工作原理是查找所有包含“Hello”的文本节点,然后使用正则表达式将每个文本节点的“Hello”一词全局替换为“Welcome”。

关于jquery - 将 word 替换为 jQuery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5473909/

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