1 Star 0 Fork 1

武林盟主vs/jsdemo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
getstyle2.html 1.26 KB
一键复制 编辑 原始数据 按行查看 历史
武林盟主vs 提交于 2018-07-01 23:32 . 运动框架 滚动
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>js 函数封装getstyle</title>
<style>
.box{
width:200px;
height:150px;
border:2px solid #777;
background: skyblue;
padding:10px 20px;
float: left;
}
.box2{
width:200px;
height: 100px;
float: left;
background-color: pink;
margin-left: 40px;
opacity: 1;
padding: 40px;
}
</style>
</head>
<body>
<div class="box" id="box">
我是box内容的文字!啦啦啦啦啦啦啦~~~
</div>
<div class="box2" id="box2">
我是box2内容的文字!啦啦啦啦啦啦啦~~~
</div>
<script type="text/javascript">
function getStyle(id,property){
var obj = document.getElementById(id);
var currStyle = (window.getComputedStyle) ? getComputedStyle(obj)[property] : obj.currentStyle[property];
return currStyle;
/* if( window.getComputedStyle ){
var currStyle = getComputedStyle(obj)[property];
return currStyle;
}
else{
var currStyle = obj.currentStyle[property];
return currStyle;
} */
}
alert(getStyle("box",'paddingLeft'));
alert(getStyle("box2",'marginLeft'));
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yaozhixing1688/jsdemo.git
git@gitee.com:yaozhixing1688/jsdemo.git
yaozhixing1688
jsdemo
jsdemo
master

搜索帮助