在jQuery中使用错误的语法

时间:2014-11-01 01:06:06

标签: javascript jquery html if-statement syntax

$screenWidth = $(document).width();
      if ($screenWidth < 980) {
        document.getElementsById("show-menu").removeAttribute("checked");
        alert($screenWidth);
      }

显然,我在这里使用的语法并不正确。哪里出错了?

1 个答案:

答案 0 :(得分:1)

document.getElementById,您有额外的s

因为您可以使用jquery:

$('#show-menu').removeAttr('checked');