CSSOM视图模式screenX/screenY属性实例页面
回到相关文章 »代码:
HTML代码:
<button id="button1">点击弹出window.screenX</button>
<button id="button2">点击弹出window.screenY</button>
JS代码:
document.getElementById("button1").onclick = function() {
alert(window.screenX);
};
document.getElementById("button2").onclick = function() {
alert(window.screenY);
};