小程序
1.视频标签优先级最高无法覆盖
2.单选框多选框无法设置大小 transform:scale(.7) 或者zoom:80%;
3.view 标签默认间距 line-height: 1;
1.移动端div不能p等标签不能绑定点击事件:解决方案 hover变小手
2.与安卓交互,app外链echart图标。js代码用let声明在oppo r9 中报错。
3.ios8及以下用事件委托方式 或者 function test(){};
4.安卓ios嵌入h5网页的时候,H5发起ajax 安卓识别http和https IOS只识别https
安卓呼出键盘打乱布局问题
var winHeight = $(window).height(); //获取当前页面高度
$(window).resize(function () {
var thisHeight = $(this).height();
if ( winHeight - thisHeight > 140 ) {
$('.go_buy').css('margin-bottom','-5rem');
} else {
$('.go_buy').css({'position':'fixed','bottom':'5%','margin-bottom':'0'});
}
})
网友评论