JS(三)
cssText//对之前的cssText覆盖
<style>
#div1{
border:1px solid black;
}
</style>
</head>
<body>
<div id=div1>123</div>
<input id="btn1" type="button" value="按钮" />
<script>
var div1=document.getElementById('div1');
var btn1=document.getElementById('btn1');
div1.onclick=function(){
div1.style.cssText='width:200px;height:200px;';
}
btn1.onclick=function(){
div1.style.cssText='';
}
</script>
</body>
禁止点击按钮
disabled=true;
this:指的是调用当前方法(函数)的那个对象
alert(this);//object window
function fn1(){ alert(this);}
var oBtn=document.getElementById('btn1');
oBtn.onclick=function(){
fn1();//}指window这个对象
oBtn.onclick=fn1;//指向oBtn这个对象
fn1();//this指向window