HTML基本操作

操作html
console.log(document.documentElement); //输出这个属性
操作body
console.log( document.body );
操作head
console.log( document.head );
作title
console.log( document.title );
浏览器窗口大小
window.innerWidth window.innerHeight - 包含滚动条大小的
不包含滚动条大小的宽度和高度
console.log( document.documentElement.clientWidth );
console.log( document.documentElement.clientHeight );

HTML基本操作

上一篇:encodeURIComponent() 函数可把字符串作为 URI 组件进行编码。


下一篇:js检查数据类型的方法