// ios的兼容
$(':text').on("focus", function () {
var target = this;
setTimeout(function(){
target.scrollIntoView(true);
}, 100);
})
$(':text').on("blur", function () {
var target = this;
setTimeout(function(){
target.scrollIntoView(true);
}, 100);
})ios