MediaWiki:Fix tabbar.js:修订间差异
无编辑摘要 |
无编辑摘要 |
||
| 第1行: | 第1行: | ||
window.addEventListener('load', function () { | window.addEventListener('load', function () { | ||
var tabLinks = document.querySelectorAll('.tabber__tab'); | |||
tabLinks.forEach(function (link) { | |||
// 同时监听 mouseover 和 touchstart 事件 | |||
['mouseover', 'touchstart'].forEach(function (eventType) { | |||
link.addEventListener(eventType, function (event) { | |||
event.stopImmediatePropagation(); | |||
event.preventDefault(); | |||
}); | }, true); | ||
}); | |||
}); | |||
}); | |||
2025年4月6日 (日) 22:54的版本
window.addEventListener('load', function () {
var tabLinks = document.querySelectorAll('.tabber__tab');
tabLinks.forEach(function (link) {
// 同时监听 mouseover 和 touchstart 事件
['mouseover', 'touchstart'].forEach(function (eventType) {
link.addEventListener(eventType, function (event) {
event.stopImmediatePropagation();
event.preventDefault();
}, true);
});
});
});