js控制div宽度的问题。
我的语句写的有问题么?为什么可以展开,但是再点击就缩小不了了!
function clicktitle()
{
if(document.getElementById("layoutleft").style.width="50px")
{
document.getElementById("layoutleft").style.width="150px";
}
else
{
document.getElementById("layoutleft").style.width="50px";
}
}
------解决方案--------------------if(document.getElementById("layoutleft").style.width=
="50px")