鹅疱圾闺!
1.想和你去看海却把握不住莫测的未来;想和你去登山却充满对理想...
- 娱乐乐园,
有什麼方法可以 test()把2個marco都取代!!" name=description>
作者 hkfuk 发布于 2003-09-02 分类:php基础编程
<script>
function test(str){
msg=str.replace("marco","marco");
return msg;
}
document.write(test("i am marco,marco"));
</script>
有什麼方法可以 test()把2個marco都取代!!
逛论坛交流:replace的問題
解決了!!
怎么解决的贴出来学习一下~!
<script>
function test(str){
msg=str.replace(/marco/g,"marco");
return msg;
}
document.write(test("i am marco,marco"));
</script>
3 条回复
回复