0

这两个条件工作正常:

if ( jQuery(window).width() > 959 ) {
    // do something if the browser window is 960px or more
}
if (!Modernizr.touch) {
    // do something if not a touch screen
}

如果设备不是触摸屏,我只需要执行一些代码,而且它的宽度也超过 960 像素。由于某种原因,这不起作用:

if    (    (!Modernizr.touch) && (jQuery(window).width() > 959) {
}
4

1 回答 1

0

你在这里缺少一个右括号:

                                       //      here------↓
if( (!Modernizr.touch) && (jQuery(window).width() > 959) ) {

}
于 2013-08-15T19:34:38.857 回答