如何使用jQuery如何查找和替换单词但保留HTML?当我执行replace()
时,它返回一个去除HTML的字符串。
这是一个例子。我想将Hello
替换为Hi
,但是当我使用此代码时,结果将剥离所有HTML。我知道我可以使用唯一的选择器来包装文本,但是无法编辑HTML。
(function($) {
var string = $('.banner-message');
string.each(function() {
var replaced = $(this).text().replace(/Hello /, 'Hi ');
$(this).html(replaced);
});
})(jQuery);
body {
background: #20262E;
padding: 20px;
font-family: Helvetica;
}
.banner-message {
background: #fff;
border-radius: 4px;
padding: 20px;
font-size: 25px;
text-align: center;
transition: all 0.2s;
margin: 0 auto;
width: 300px;
}
button {
background: #0084ff;
border: none;
border-radius: 5px;
padding: 8px 14px;
font-size: 15px;
color: #fff;
}
.banner-message.alt {
background: #0084ff;
color: #fff;
margin-top: 40px;
width: 200px;
}
.banner-message.alt button {
background: #fff;
color: #000;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div class="banner-message">
Hello World
<button>Change color</button>
</div>
<div class="banner-message">
Hello World
<button>Change color</button>
</div>
谢谢...
答案 0 :(得分:0)
您这样做
var replaced = $(this).text().replace(/Hello /, 'Hi ');
-----------------------^^^^
.text()
函数返回内容的 text 版本。您需要获取 html 版本的方法:)
提示:您已经在相同的代码段中找到了所需的方法
答案 1 :(得分:0)
将跨度添加到html,如下所示:
<div class="banner-message">
<span>Hello World</span>
<button>Change color</button>
</div>
<div class="banner-message">
<span>Hello World</span>
<button>Change color</button>
</div>
并更新javascript:
(function($) {
var string = $('.banner-message');
string.each(function(){
var replaced = $(this).find('span').text().replace( /Hello /, 'Hi ' );
$(this).find('span').html(replaced)
});
})(jQuery);