Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用以下代码来监视屏幕大小的变化并运行alertSize(),但它仅在加载页面时才有效,然后它不起作用
alertSize()
window.onresize=alertSize();
你要
window.onresize = alertSize;
您需要设置“onresize”属性来引用您的函数,而不是调用函数的结果。
实际上你可能不应该尝试这个,因为测试你的函数是否真的使用alert(). 在桌面计算机上调整窗口大小时,浏览器会触发许多“调整大小”事件。
alert()
您可能还想研究 CSS 媒体查询。