设置了宽和高,但是运行的时候没变化
var h=document.getElementById("con");
var d=document.getElementById("txt");
function color(){
d.style.color="white";
d.style.backgroundColor="blue";
}
//定义"改变宽高"的函数
function size(){
d.style.width="200px";
d.style.height="200px";
}
var h=document.getElementById("con");
var d=document.getElementById("txt");
function color(){
d.style.color="white";
d.style.backgroundColor="blue";
}
//定义"改变宽高"的函数
function size(){
d.style.width="200px";
d.style.height="200px";
}
2015-11-20
举报