MediaWiki:Common.js:修订间差异

来自生物多样性知识平台

无编辑摘要
无编辑摘要
第7行: 第7行:
         $(this).attr('href', href + '?action=render');
         $(this).attr('href', href + '?action=render');
     });
     });
  document.addEventListener('DOMContentLoaded', function () {
    var logoLink = document.getElementById('p-logo').querySelector('a');
    if (logoLink) {
        logoLink.href = "https://home.ibriding.org";
    }
  });
});
});

2024年5月10日 (五) 04:57的版本

/* 这里的任何JavaScript将为所有用户在每次页面加载时加载。 */

$(document).ready(function() {
    $('.gallery a.image').each(function() {
        var href = $(this).attr('href');
        // 修改链接以指向直接的图片浏览器查看模式
        $(this).attr('href', href + '?action=render');
    });

   document.addEventListener('DOMContentLoaded', function () {
     var logoLink = document.getElementById('p-logo').querySelector('a');
     if (logoLink) {
        logoLink.href = "https://home.ibriding.org";
     }
   });
});