最赞回答 / 荆荆
因为它只是窗口名称,名称随便起无所谓,只不过这三个名字比较特殊: _blank:在新窗口显示目标网页 _self:在当前窗口显示目标网页 _top:框架网页中在上部窗口中显示目标网页默认是_blank,在新窗口显示
2018-03-19
最新回答 / qq_long妹_0
document.write("hello"); document.getElementById("p1").style.color="blue";以上为正确答案,你稍加对比可以明白。
2018-03-11
最赞回答 / 慕盖茨8345433
var txt=document.getElementById("txt"); var set={ changeColor:function(){ txt.style.color="red"; txt.style.backgroundColor="#ccc"; }, changeSize:function(){ txt.style.width="300px"; txt.style.height="300px"; }, ...
2018-03-09