3

我正在 jquery mobile 中做一个移动应用程序。当第一页加载时,它有一个 init 函数。我的要求是加载第一页时,光标应指向文本框。我试过了:

  $('#txtdemo').focus();

   var txtBox=document.getElementById("txtdemo");
   txtBox.focus();

但两者都不起作用。请让我知道一个很好的方法来做到这一点。

4

2 回答 2

4

在移动站点中,无法通过编程将焦点集中在文本框中并打开键盘。这是一种可用性问题。在桌面站点中,您可以使用

$('#txtdemo').focus();

$('#txtdemo').select();

$('#txtdemo').trigger('focus');

$('#txtdemo').trigger('click');
于 2013-07-12T10:49:34.440 回答
3

只能在pageshow活动期间进行。这一定是pageshow因为页面仅在该点完全形成。如果您不知道是什么pageshow,请查看我关于 jQuery Mobile 页面事件的文章。此外,这仅适用于桌面浏览器,不适用于移动浏览器。在移动浏览器的情况下,输入字段将成为焦点,但这不会触发键盘显示。

$(document).on('pageshow', '#index', function(){ 
    $('#some-input').focus();
}); 

工作示例:

<!DOCTYPE html>
<html>http://jsfiddle.net/Gajotres/PMrDn/#update
    <head>
        <title>jQM Complex Demo</title>
        <meta http-equiv='Content-Type' content='text/html; charset=utf-8'/>
        <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; minimum-scale=1.0; user-scalable=no; target-densityDpi=device-dpi"/>
        <link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css" />
        <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
        <script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>  
        <script>
            $(document).on('pageshow', '#index', function(){ 
                $('#some-input').focus();
            }); 
        </script>       
    </head>
    <body>
        <div data-role="page" id="index">
            <div data-theme="b" data-role="header">
                <h1>Index page</h1>
            </div>

            <div data-role="content">
                <input type="text" value="" id="some-input"/>  
            </div>
        </div>    
    </body>
</html>   
于 2013-07-12T10:43:19.610 回答