MediaWiki:Common.js

注意:在发布之后,您可能需要清除浏览器缓存才能看到所作出的变更的影响。

  • Firefox或Safari:按住Shift的同时单击刷新,或按Ctrl-F5Ctrl-R(Mac为⌘-R
  • Google Chrome:Ctrl-Shift-R(Mac为⌘-Shift-R
  • Internet Explorer或Edge:按住Ctrl的同时单击刷新,或按Ctrl-F5
  • Opera:Ctrl-F5
/* 这里的任何JavaScript将为所有用户在每次页面加载时加载。 */

if (document.querySelector('.user-hover-target')) {
	document.querySelector('.user-hover-target').addEventListener('mouseover', function(event) {
	    var tooltip = document.getElementById('user-tooltip');
	    tooltip.style.display = 'block';
	    tooltip.style.position = 'fixed';
	    tooltip.style.left = event.clientX + 20 + 'px';  // 在鼠标右侧显示,避免遮挡
	    tooltip.style.top = event.clientY + 20 + 'px';   // 在鼠标下方显示,避免遮挡
	});

	document.querySelector('.user-hover-target').addEventListener('mouseout', function() {
	    document.getElementById('user-tooltip').style.display = 'none';
	});
}