/*去掉iphone手机滑动默认行为*/
$('body').on('touchmove', function (event) {
event.preventDefault();
});
04-27 05:16