752
回編集
Marine-Blue (トーク | 投稿記録) (w:MediaWiki:Gadget-exlinks.js 2008年2月25日 (月) 14:57 の版より作成) |
Marine-Blue (トーク | 投稿記録) (update; copy from enwiki w:Special:PermaLink/609653720) |
||
// ** **
// **********************************************************************
/**
* @source mediawiki.org/wiki/Snippets/Open_external_links_in_new_window
* @version 5
*/
mw.hook('wikipage.content').add(function($content) {
// Second selector is for external links in Parsoid HTML+RDFa output (bug 65243).
$content.find('a.external, a[rel="mw:ExtLink"]').each(function () {
// Can't use wgServer because it can be protocol relative
// Use this.href property instead of this.getAttribute('href') because the property
// is converted to a full URL (including protocol)
tablink.target = "_blank";▼
if (this.href.indexOf(location.protocol + '//' + location.hostname) !== 0) {
}
});
});
|
回編集