js替换文本的方法-用jQuery替换HTML页面中的文本(Replace text in HTML page with jQuery)
作者:
发布时间:2020-09-12
来源:本站原创
点击数:
问:
如何替换jQuery中的任何字符串?
假设我有一个字符串”-9o0-9909” ,我想用另一个字符串替换它。
答:
方法一:
var replaced = $("body").html().replace('-9o0-9909','The new string');
$("body").html(replaced);
方法二、替替所有单词,并使用正则表达式将其声明为全局
var replaced = $("body").html().replace(/-1o9-2202/g,'The ALL new string');
$("body").html(replaced);
方法三、替换一个轮循:
$("body").html($("body").html().replace(/12345-6789/g,'<b>abcde-fghi</b>'));