<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>css样式</title>
</head>
<style>
*{
margin: 0;
padding: 0;
}
#div1{
width: 300px;
height: 300px;
margin: 0 auto;
margin-top: 50px;
background: red;
border-radius: 10px;
border: 10px solid #eee;
}
</style>
<script >
window.onload=function () {
var odiv=document.getElementById('div1');
odiv.style.background="yellow";
var length=odiv.style.length;
alert(length);//0
var value=odiv.style.getPropertyValue('background');
var value2=odiv.style.removeProperty('border');
alert(value2);
}
</script>
<body>
<div id ='div1'></div>
</body>
</html>
陈士愚
相关分类