我想出了一個解決方案,它並不完美,但符合要求:
這裏是書籤代碼:
javascript:window.open(window.location);window.location="http://www.google.com/";var%20s=document.createElement('script');s.setAttribute('src','http://my-script.js');document.body.appendChild(s);void(0);
的可讀一步一步相當於福利:
window.open(window.location); // Clone the current tab
window.location = "http://www.google.com/"; // Navigate to the desired page url
var s = document.createElement('script'); // Create the script
s.setAttribute('src','http://my-script.js'); //
document.body.appendChild(s); // Embed it into current document
只剩下一個問題:默認情況下,您要顯示的頁面未處於活動狀態。克隆的是。
是否有可能'window.open()'的名稱,然後注入東西到窗口後? – 2010-05-23 03:16:30