函数的介绍参考:http://www.w3school.com.cn/jsref/jsref_replace.asp

 

下列代码将Hello World!中的World替换为Jim

<html>
<body>

<script type="text/javascript">

var str="Hello World!"
document.write(str.replace("World","Jim"))

</script>
</body>
</html>

相关文章: