安卓、IOS按钮兼容

input[type="button"], input[type="submit"], input[type="reset"] {

-webkit-appearance: none;

}

textarea {  -webkit-appearance: none;}



移动设备IOS不支持jquery的live绑定的解决办法

给绑定click事件的元素加上样式:cursor: pointer;

然后用on来绑定事件,jquery1.7后推荐用on来动态绑定事件,因为比live更高效

$(function(){$(document).on('click','.list li',function(){alert('你点我了');        });    })

你可能感兴趣的:(安卓、IOS按钮兼容)