注意:在您發布之後,您可能需要清除瀏覽器快取才能看到變更。
/* 此 JavaScript 會用於使用者載入的每一個頁面。 */ $( function () { $( '#mw-content-text' ).on( 'click', '.newwin > a', function () { var otherWindow = window.open(); otherWindow.opener = null; otherWindow.location = this; return false; } ); } );