如果不是触摸屏,并且宽度为960px或更高,则执行代码

时间:2013-08-15 19:29:45

标签: jquery

这两个条件工作正常:

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
}

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

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

1 个答案:

答案 0 :(得分:0)

你在这里错过了一个右括号:

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

}