在javascript:openwindow中更改基本href

时间:2013-09-14 17:16:34

标签: javascript

我在远程站点获取的文件获取内容

的内容中有这样的链接
javascript:openwindow("http://www.remotesite.com/index1.php?option=com_lsh&view=lsh&event_id=170119&tid=414745&channel=0&tmpl=component&layout=popup","730","770")

我想改变http://www.remotesite。来到mysite。融为一体

1 个答案:

答案 0 :(得分:0)

以下是更改href属性的方法:

var link = document.getElementById('linkid');
link.href = link.href.replace('http://www.remotesite.com', 'http://mysite.com');