10

入力ボックスにフォーカスを設定し、pageshow で jquery モバイルを使用して Android キーボードを表示しようとしています。

私はウェブから多くのオプションを試しました。しかし、エミュレーターとモバイルの両方で期待どおりに機能するものはありません。

コードは次のとおりです。

<!DOCTYPE html>
<html>
    <head>
        <title>Title</title>
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
        <link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
    </head>
    <body>
        <div data-role="page" id="main">
            <div data-role="header"><h3>Set Focus, Show Keyboard</h3></div>
            <div data-role="content">
                <label for="gotoPage"></label>
                <input type="text" name="gotoPage" id="gotoPage" placeholder="Question No." data-mini="true"   />
            </div>
        </div>                              

        <script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
        <script>
            $(document).on('pageinit',"[data-role=page]", function() {  

            });

            $(document).on('pagebeforeshow',"[data-role=page]", function() {                

            });

            $(document).on('pageshow',"[data-role=page]", function() {  
                $('#gotoPage').focus().select();                        
            }); 
        </script>
        <script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>      
    </body>
</html>

参照用のスクリーンショットを見つけます

ここに画像の説明を入力

ここに画像の説明を入力

親切なアドバイス...よろしくお願いします...

ノート:

Omar のコメントによると、ios では問題なく動作しています... Android でこれを動作させる方法を提案できる人はいますか?

4

1 に答える 1