摘要:
**一、getComputedStyle是?**getComputedStyle是一个可以获取当前元素所有最终使用的CSS属性值。返回的是一个CSS样式声明对象([object CSSStyleDeclaration]),只读。 getComputedStyle() gives the final 阅读全文
摘要:
html header 区的可选内容:1. 公司版权注释<!-- The site is designed by Maiziedu 09/2018-->2.网站作者信息<meta name="author" content="master@madd.com"></meta>3.网站介绍<meta n 阅读全文
摘要:
一 、Number() Number()可以把任意值转换成数值,如果要转换的字符串中有一个不是数值的字符,返回NaN 例如: var num1 = Number(true); //true返回1 false返回0 var num2 = Number(undefined); //返回NaN var n 阅读全文