$(“input,textarea,select”).blur(function(){
window.scrollTo(0, document.documentElement.clientHeight);
}); //解决ios软键盘弹起底部留白
KaTeX parse error: Expected '}', got 'EOF' at end of input: …ion() { if((document).height() - $(window).height() <= $(window).scrollTop()) {
$(".pro_float_buy").hide();
}else{
$(".pro_float_buy").show();
}
}); //判断滚动条到底部否
// 安卓手机下的position: fixed;
windowInnerHeight = window.innerHeight; //获取当前浏览器窗口高度
$(window).resize(function(){
if(window.innerHeight < windowInnerHeight){
$(’.pop-footer’).css(‘position’,‘static’);//也可以在css文件夹写个类名,然后相对应的removeClass和addClass既可
}else{
$(’.pop-footer’).css(‘position’,‘absolute’);
}
});
// position定位时居中
top: 50%;
left: 50%;
-ms-transform: translate(-50%,-50%);
-moz-transform: translate(-50%,50%);
-moz-transform: translate(-50%,-50%);
transform: translate(-50%,-50%);
jQuery.prev(),返回上一个兄弟节点,不是所有的兄弟节点
jQuery.prevAll(),返回所有之前的兄弟节点
jQuery.next(),返回下一个兄弟节点,不是所有的兄弟节点
jQuery.nextAll(),返回所有之后的兄弟节点
jQuery.siblings(),返回兄弟姐妹节点,不分前后