js中window.innerWidth可以换种表示方法吗,如果可以,给出例子
时间: 2024-01-01 08:06:04 浏览: 85
解析window.open的使用方法总结
是的,可以用`document.documentElement.clientWidth`来表示窗口的宽度,例如:
```
var windowWidth = document.documentElement.clientWidth;
console.log(windowWidth);
```
这段代码可以输出当前窗口的宽度。
阅读全文