如何通过JavaScript或jQuery来专注于Android

如何通过JavaScript或jQuery来专注于Android

本文介绍了如何通过JavaScript或jQuery来专注于Android浏览器中输入字段的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经试过 $('#场)。重点(),并在互联网上找到任何其他方法。毫无效果。我有一个简单的HTML能重现问题。

I've tried $('#field').focus(), and any other method found on the internet. Nothing worked. I have a simple html that reproduces the problem.

<!DOCTYPE html>
<html>
    <head>
        <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
        <script type="text/javascript">
            $(document).ready(function() {
                $('#field').focus();
            });
    </script>
</head>
<body>
    <input type="text" id="field" name="field"/>
</body>
</html>

请帮忙!

推荐答案

其实,JavaScript函数焦点被停用的Andr​​oid浏览器一般。因此,jQuery的重点功能被禁用,因为它使用上面。

Actually, the general javascript function "focus" is deactivated in the android browser. Hence, the jQuery focus function is deactivated since it's using the above.

这篇关于如何通过JavaScript或jQuery来专注于Android浏览器中输入字段的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-30 18:16