JS换址转向(更换域名时候用)

Posted on 2008-04-15 01:56  黔人阿诺  阅读(264)  评论(0编辑  收藏  举报
<script language="javascript"> 
var str=window.location.href; 
//在此我想将字母a替换成字母A
var gostr=str.replace("yellowurl","yellowurls");
window.location.href
=gostr;
</script>