📄 mouseposn.js
字号:
function showit(){ document.forms['theform'].xcoord.value=event.x; document.getElementById('spanx').innerHTML='x='+event.x; document.forms.theform.ycoord.value=event.y; document.getElementById('spany').innerHTML='y='+event.y;}function showitMOZ(e){ document.forms['theform'].xcoord.value=e.pageX; document.getElementById('spanx').innerHTML='x='+e.pageX; document.getElementById('spany').innerHTML='y='+e.pageY; document.forms.theform.ycoord.value=e.pageY;}if (!document.all){window.captureEvents(Event.CLICK);window.onclick=showitMOZ;}else{document.onclick=showit;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -