刪除的JavaScript鏈接的代碼如下:從鏈接
<td class="buttonColumn">
<a href="javascript:confirmDialog('Are you sure you want go?', 'http://google.com');" class="actionButtonNew">Leave to Google</a>
</td>
<td class="buttonColumn">
<a href="javascript:confirmDialog('Are you sure you want go?', 'http://yahoo.com');" class="actionButtonNew">Leave to Yahoo</a>
</td>
有在頁面上需要相應的更改多個按鈕具有完全相同的格式。我在想這樣的事情:
var fix = document.getElementsByClassName('actionButtonNew');
for (var i=0; i<fix.length; i++) {
我不知道如何完成代碼。我試過這個:
var fix = document.getElementsByClassName('actionButtonNew');
for(var i = 0; i < fix.length; i++) {
try {
var l = fix[i];
var h = fix[i].parentNode.getElementsByClassName('actionButtonNew')[0].href.replace("javascript:confirmDialog('Are you sure you want to go?',", "");
l.href = h;
} catch(e) {}
}
我知道這是非常混亂和不好。它確實將鏈接更改爲:'http://google.com');
所以我想我可能會走在正確的軌道上。請幫幫我。提前致謝!
你想要在鏈接被更改後實現什麼功能(例如,沒有鏈接,刪除所有http:// ...)? – 2013-03-28 03:44:10
我想要鏈接指向網站。即:谷歌鏈接去http://google.com – MathMan08 2013-03-28 03:45:07
那麼刪除確認? – 2013-03-28 03:45:32