Jquery移动自动对焦不起作用

时间:2013-07-10 10:44:52

标签: javascript jquery jquery-mobile

我需要为我的移动网站添加自动对焦功能

`<script type="text/javascript" >
        $(document).ready(function() {
            $("#div_error").focus();
        });



</script >`

但这不起作用。这是什么原因?

<div  id="div_error" tabindex="-1">some text</div>

1 个答案:

答案 0 :(得分:1)

使用jQuery Mobile无法以这种方式使用

Document ready

虽然它会触发,但它会在jQuery Mobile创建和设置活动页面之前触发。 要解决此问题,必须使用正确的jQuery Mobile页面事件。如果您不知道jQuery Mobile事件的页面,请查看我的 ARTICLE

工作示例:http://jsfiddle.net/D9NBT/

<强> HTML:

<!DOCTYPE html>
<html>
    <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>    
    </head>
    <body>
        <div data-role="page" id="index">
            <div data-theme="b" data-role="header">
                <h1>Index page</h1>
            </div>

            <div data-role="content">
                <div  id="div_error" tabindex="-1">some text</div>
            </div>
        </div>    
    </body>
</html>   

<强>使用Javascript:

$(document).on('pageshow', '#index', function(){ 
    $("#div_error").focus();
});