1 Star 0 Fork 1

武林盟主vs/jsdemo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
getstyle3.html 1.06 KB
一键复制 编辑 原始数据 按行查看 历史
武林盟主vs 提交于 2018-07-04 22:50 . 获取样式
<!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: #000;
padding:10px 20px;
opacity: 0.2;
filter: alpha(opacity=20);
}
</style>
</head>
<body>
<div class="box" id="box">
我是box内容的文字!啦啦啦啦啦啦啦~~~
</div>
<script type="text/javascript">
function getStyle(id,property){
//var obj = document.getElementById(id);
var currStyle = (window.getComputedStyle) ? getComputedStyle(id)[property] : id.currentStyle[property];
return currStyle;
/* if( window.getComputedStyle ){
var currStyle = getComputedStyle(id)[property];
return currStyle;
}
else{
var currStyle = id.currentStyle[property];
return currStyle;
} */
}
var oBox = document.getElementById("box");
alert(getStyle(oBox,'paddingLeft'));
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yaozhixing1688/jsdemo.git
git@gitee.com:yaozhixing1688/jsdemo.git
yaozhixing1688
jsdemo
jsdemo
master

搜索帮助