如果屏幕大于767px,我只希望我的脚本运行,所以我用
包装了我的脚本if($(window).width() > 767){
}
这是我目前的剧本:
if($(window).width() > 767){
$('header input').click(function() {
$('#holiday-bg').css({
'background-position': 'center center',
'padding-bottom': '39%',
});
});
}
该脚本在没有包装时有效,有什么想法吗?
答案 0 :(得分:1)
如果屏幕大于767px
,我只希望我的脚本运行
为什么不直接检查click
事件本身的窗口大小!
$( 'header input' ).click(function() {
if( $( window ).width() > 767 )
{
$( '#holiday-bg' ).css({
'background-position': 'center center',
'padding-bottom': '39%',
});
}
});