我如何将注意力集中在iphone上

时间:2017-10-30 14:32:31

标签: jquery iphone focus

嗨我有这个问题。

我希望点击后将注意力集中在iphone上,并进行动画和焦点输入。它适用于任何地方只有iphones才是问题所在。 thx for everything。

$('.focusOnInput').on('click touchstart', function(e) {
    e.preventDefault();

    $("html, body").animate({
        scrollTop: "0px"
    }, 400, function() {
        setTimeout(function() {
            $("input#focusOnMe").focus();
        }, 100);

    });
});

0 个答案:

没有答案