问答详情
源自:2-7 jQuery选择器之基本筛选选择器

为什么一直运行不正确~~~~

function mytext(){

box=document.getElementById("box");

sty=document.getElementById("sty").value;

val=document.getElementById("val").value;

if(sty=="color"){

box.style.color=val;}

else if(sty="backgroundcolor"){

box.style.backgroundColor=val;}

else if(sty=="height"){

box.style.height=parseInt(val)+"px";}

else if(sty="width"){

box.style.width=parseInt(val)+"px";}

else{

alert("输入错误");}

}


提问者:新手村上路 2018-12-21 17:00

个回答

  • 阳火锅
    2018-12-21 17:03:59
    已采纳

    判断里面少写了一个等于号。。。求采纳。。谢谢