function getStyle(obj,attr){
if(obj.currentStyle){ //for IE
return obj.currentStyle[attr];
}else{
return getComputedStyle(obj,null)[attr];
}
}
相关文章
- Spring boot maven打包后文件变大原因以及解决方法
- Idea导入maven工程后右键没有Maven选项,没有maven命令行运行视图
- 计算字符串字节数
- 在eclipse API中,如何从位于项目或工作区外的文件中获取IFile
- 使用jquery获取自定义标记(包含冒号)值
- Angular集成moment.js使用
- Mac OS X完整卸载Node.js,并重新安装的方法
- android获取数据库查询的结果
- requirejs加载bootstrap报错处理:Bootstrap dropdown require Popper.js (https://popper.js.org)
- SpringBoot中配置文件详解(yml、properties全局配置和自定义配置),获取配置方式