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

提供:作業療法大百科事典OtWiki
編集の要約なし
編集の要約なし
11行目: 11行目:
     if (twitterButton) {
     if (twitterButton) {
         // Twitterのシェア用URLを設定
         // Twitterのシェア用URLを設定
         var twitterShareUrl = 'https://twitter.com/intent/tweet?url=' + encodeURIComponent(currentPageUrl) + '&text=' + encodeURIComponent(document.title);
         var twitterShareUrl = 'https://twitter.com/intent/tweet?url=' + encodeURIComponent(currentPageUrl) + '&text=' + encodeURIComponent('Check this out!');


         // href属性にURLを設定
         // href属性にURLを設定

2024年5月30日 (木) 12:08時点における版

/* ここにあるすべてのJavaScriptは、すべてのページ読み込みですべての利用者に対して読み込まれます */

document.addEventListener('DOMContentLoaded', function() {
    // 現在のページのURLを取得
    var currentPageUrl = window.location.href;

    // Twitterボタンを取得
    var twitterButton = document.querySelector('#footer-places-snsbuttonX a');

    // URLが正しく取得できたかを確認
    if (twitterButton) {
        // Twitterのシェア用URLを設定
        var twitterShareUrl = 'https://twitter.com/intent/tweet?url=' + encodeURIComponent(currentPageUrl) + '&text=' + encodeURIComponent('Check this out!');

        // href属性にURLを設定
        twitterButton.href = twitterShareUrl;
    } else {
        console.error("Twitterボタンが見つかりませんでした。");
    }
});