“MediaWiki:Common.js”的版本间的差异
来自帮助文档
第1行: | 第1行: | ||
/* 这里的任何JavaScript将为所有用户在每次页面载入时加载。 */ | /* 这里的任何JavaScript将为所有用户在每次页面载入时加载。 */ | ||
// 添加事件监听器 | // 添加事件监听器 | ||
− | + | document.addEventListener('DOMContentLoaded', function() { | |
+ | document.getElementById('Qlink').addEventListener('click', function() { | ||
+ | window.location.href = 'http://help.qlinkcloud.club/index.php?title=Qlink'; | ||
+ | console.log("111") | ||
+ | }); | ||
+ | }); | ||
$('#MSG600').click(function(){ | $('#MSG600').click(function(){ | ||
localStorage.clear(); | localStorage.clear(); | ||
第16行: | 第21行: | ||
}); | }); | ||
− | |||
− | |||
− | |||
− | |||
− |
2024年12月2日 (一) 14:14的版本
/* 这里的任何JavaScript将为所有用户在每次页面载入时加载。 */ // 添加事件监听器 document.addEventListener('DOMContentLoaded', function() { document.getElementById('Qlink').addEventListener('click', function() { window.location.href = 'http://help.qlinkcloud.club/index.php?title=Qlink'; console.log("111") }); }); $('#MSG600').click(function(){ localStorage.clear(); window.location.href = 'http://help.qlinkcloud.club/index.php?title=%E5%B8%AE%E5%8A%A9'; }); $('#MSG500').click(function(){ localStorage.clear(); window.location.href = 'http://help.qlinkcloud.club/index.php?title=%E5%BC%80%E5%B1%80%E6%8C%87%E5%AF%BC'; }); $('#FAQ').click(function(){ localStorage.clear(); window.location.href = 'http://help.qlinkcloud.club/index.php?title=FAQ'; });