什么是JavaScript中的跨浏览器窗口调整大小事件?
对于JavaScript中的窗口调整大小事件,请使用addEventListener()。以下代码将为您提供当前窗口的大小-
示例
<!DOCTYPE html>
<html>
<head>
<style>
div {
margin-top: 10px;
padding: 10px;
background-color: #1E9E5D;
width: 50%;
} span {
font-size: 50px;
}
</style>
<script>
window.addEventListener('resize', display);
function display() {
document.querySelector('.width').innerText = document.documentElement.clientWidth;
document.querySelector('.height').innerText = document.documentElement.clientHeight;
}
display();
</script>
</head>
<div>
<span>Width= <span class="width"></span></span><br />
<span>Height= <span class="height"></span></span>
</div>
</body>
</html>热门推荐
10 简短有力的结婚祝福语
11 祝福语女友文案简短霸气
12 给儿子祝福语简短霸气
13 预祝高尔夫的祝福语简短
14 生日哥哥祝福语简短独特
15 对司机的祝福语简短
16 新年送老师简短祝福语
17 对同事简短生日祝福语
18 妈妈生日祝福语简短温暖