通过javascript设置rgba颜色值失败,为什么
发布网友
发布时间:2022-04-11 09:45
我来回答
共1个回答
热心网友
时间:2022-04-11 11:14
首先要注意的是,只有标准浏览器以及IE9+才支持rgba。
下面的例子在Chrome亲测无误:
<div id=k1 style="position:absolute; left:0; top:0; width:200px; height:100px; background-color:#f00"></div>
<div id=k2 style="position:absolute; left:100px; top:50px; width:200px; height:100px"></div>
<script>
window.onload=function(){
document.getElementById("k2").style.backgroundColor="rgba(0,0,0,0.5)";
}
</script>