0

我从 remore 网站获得的内容中有类似的链接,其中包含文件获取内容

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。com 到我的网站。com。

4

1 回答 1

0

更改href属性的方法如下:

var link = document.getElementById('linkid');
link.href = link.href.replace('http://www.remotesite.com', 'http://mysite.com');
于 2013-09-14T17:37:07.880 回答