我的if
发言被忽略了。我对编码很陌生。
我觉得我缺少分号或括号或类似的小东西。
<script type="text/javascript">
function showdiv() {
if(document.getElementById("nav-wrap-2").style.opacity ='.5')
{
document.getElementById("nav-wrap-2").style.opacity ='0';
document.getElementById("content-wrap").style.marginLeft ='250px';
}
}
</script>
编辑:在 if 语句中将 = 更改为 == 是正确的解决方案,但它并没有解决整个问题。我还必须去掉 if 语句中 '.5' 周围的引号。德普。