这两个条件工作正常:
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) {
}
答案 0 :(得分:0)
你在这里错过了一个右括号:
// here------↓
if( (!Modernizr.touch) && (jQuery(window).width() > 959) ) {
}