「MediaWiki:Common.js」の版間の差分
ナビゲーションに移動
検索に移動
(同じ利用者による、間の6版が非表示) | |||
2行目: | 2行目: | ||
$(function () { | $(function () { | ||
console.log("DOCUMENT READY START!"); | console.log("DOCUMENT READY START!"); | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
// Code Prettify | // Code Prettify | ||
$("pre").addClass("prettyprint linenums"); | $("pre").addClass("prettyprint linenums"); | ||
//prettyPrint(); | //prettyPrint(); | ||
+ | // 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"; | ||
+ | }) | ||
+ | $(this).css('cursor','pointer'); | ||
+ | }); | ||
console.log("DOCUMENT READY END!"); | console.log("DOCUMENT READY END!"); | ||
}()); | }()); | ||
+ | |||
+ | $( window ).on( "load", function() { | ||
+ | console.log( "WINDOW LOADED" ); | ||
+ | prettyPrint(); | ||
+ | }); |
2021年1月26日 (火) 15:29時点における最新版
/* ここにあるすべてのJavaScriptは、すべてのページ読み込みですべての利用者に対して読み込まれます */ $(function () { console.log("DOCUMENT READY START!"); // Code Prettify $("pre").addClass("prettyprint linenums"); //prettyPrint(); // 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"; }) $(this).css('cursor','pointer'); }); console.log("DOCUMENT READY END!"); }()); $( window ).on( "load", function() { console.log( "WINDOW LOADED" ); prettyPrint(); });
© 2006 矢木浩人