「MediaWiki:Common.js」の版間の差分

提供:ファンタジー能力Wiki
ナビゲーションに移動 検索に移動
(ページの作成:「→‎ここにあるすべてのJavaScriptは、すべてのページ読み込みですべての利用者に対して読み込まれます: $(document).ready(function() { var adHtml = '<div id="footer-ad" style="text-align: center; margin-top: 20px;">' + '<a href="https://your-ad-link.example.com" target="_blank">' + '<img src="https://your-ad-image.example.com/banner.jpg" alt="広告" style="width:300px; height:auto;">' +…」)
(相違点なし)

2025年2月9日 (日) 17:16時点における版

/* ここにあるすべてのJavaScriptは、すべてのページ読み込みですべての利用者に対して読み込まれます */
$(document).ready(function() {
    var adHtml = '<div id="footer-ad" style="text-align: center; margin-top: 20px;">' +
                 '<a href="https://your-ad-link.example.com" target="_blank">' +
                 '<img src="https://your-ad-image.example.com/banner.jpg" alt="広告" style="width:300px; height:auto;">' +
                 '</a></div>';
    
    $('#footer').append(adHtml);
});