js中replace的用法(两种常用举例,还有好多用法不一一列举)
Posted 渐行渐远~想
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js中replace的用法(两种常用举例,还有好多用法不一一列举)相关的知识,希望对你有一定的参考价值。
1、替换特定字符
<html>
<body>
<script type="text/javascript">
var str="Visit Microsoft!"
document.write(str.replace(/Microsoft/,"W3School"))
</script>
</body>
</html>
2、全局替换
<html>
<body>
<script type="text/javascript">
var str="Welcome to Microsoft! ";
str=str + "We are proud to announce that Microsoft has ";
str=str + "one of the largest Web Developers sites in the world.";
document.write(str.replace(/Microsoft/g, "W3School"));
</script>
</body>
</html>
以上是关于js中replace的用法(两种常用举例,还有好多用法不一一列举)的主要内容,如果未能解决你的问题,请参考以下文章