「MediaWiki:Common.js」の版間の差分
ナビゲーションに移動
検索に移動
1行目: | 1行目: | ||
/* ここにあるすべてのJavaScriptは、すべてのページ読み込みですべての利用者に対して読み込まれます */ | /* ここにあるすべてのJavaScriptは、すべてのページ読み込みですべての利用者に対して読み込まれます */ | ||
− | |||
− | |||
$(function () { | $(function () { | ||
+ | // Template:Amazon に 画面遷移を付与 | ||
$(".amazonlink").each(function(){ | $(".amazonlink").each(function(){ | ||
var asin = $(this).find("img").attr("alt"); | var asin = $(this).find("img").attr("alt"); | ||
10行目: | 9行目: | ||
}) | }) | ||
}); | }); | ||
+ | |||
+ | // Code Prettify | ||
+ | $("pre").addClass("prettyprint linenums"); | ||
+ | prettyPrint(); | ||
+ | |||
}()); | }()); |
2020年3月14日 (土) 14:19時点における版
/* ここにあるすべてのJavaScriptは、すべてのページ読み込みですべての利用者に対して読み込まれます */ $(function () { // Template:Amazon に 画面遷移を付与 $(".amazonlink").each(function(){ var asin = $(this).find("img").attr("alt"); asin = asin.slice(0, asin.indexOf('.')); $(this).click(function() { window.location.href = "https://www.amazon.co.jp/exec/obidos/ASIN/" + asin + "/typea09-22"; }) }); // Code Prettify $("pre").addClass("prettyprint linenums"); prettyPrint(); }());
© 2006 矢木浩人