$screenWidth = $(document).width();
if ($screenWidth < 980) {
document.getElementsById("show-menu").removeAttribute("checked");
alert($screenWidth);
}
显然,我在这里使用的语法并不正确。哪里出错了?
答案 0 :(得分:1)
document.getElementById
,您有额外的s
因为您可以使用jquery:
$('#show-menu').removeAttr('checked');