“$(document).on(‘pageshow’”不使用jQuery 1.9.1 JQM 1.3.0-stable

前端之家收集整理的这篇文章主要介绍了“$(document).on(‘pageshow’”不使用jQuery 1.9.1 JQM 1.3.0-stable前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
使用jQuery 1.8.3
<!DOCTYPE html>
<html>
    <head>
        <script src="js/jquery-1.8.3.min.js"></script>
        <script src="js/jquery.mobile-1.3.0.min.js"></script>
        <script>
      $.support.cors = true;
      $.mobile.allowCrossDomainPages = true;

      $("#home").live("pageshow",function( event ) {
        alert( "Ok. This is Home!" );
      });
        </script>
    </head>
    <body>

    <!--- HOME --->
    <div data-role="page" id="home">
    <h2>Hello World</h2>
    </div>
    </body>
</html>

警报工作正常.

但是,使用jQuery 1.9.1(请注意我更改了版本,并使用“on”更改为“live”.

<!DOCTYPE html>
<html>
    <head>
        <script src="js/jquery-1.9.1.min.js"></script>
        <script src="js/jquery.mobile-1.3.0.min.js"></script>
        <script>
      $.support.cors = true;
      $.mobile.allowCrossDomainPages = true;

      $("#home").on("pageshow",function( event ) {
        alert( "Ok. This is Home!" );
      });
        </script>
    </head>
    <body>

    <!--- HOME --->
    <div data-role="page" id="home">
    <h2>Hello World</h2>
    </div>
    </body>
</html>

警报不起作用.我确定我做错了什么.我一直在读jQuery Mobile 1.3.0-stable会使用jQuery 1.9.1,但也许我错了.

解决方法

更改
$("#home").on("pageshow",function( event ) {

$(document).on("pageshow","#home",function( event ) {

on的语法与live的语法不同:在进行绑定时,接收和委托事件的元素必须存在.

原文链接:https://www.f2er.com/jquery/176293.html

猜你在找的jQuery相关文章