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を変更したい。mysite にアクセスしてください。コム。

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 に答える