jqueryMobile tap and bubbling/propagation

ぐ巨炮叔叔 提交于 2019-12-04 13:54:55

It can be fixed in few ways:

  1. On tap/click event use this methods before you call changePage:

    e.stopPropagation();
    e.stopImmediatePropagation();
    

    or:

    $(document).on('tap', '#button', function(){       
        e.stopPropagation();
        e.stopImmediatePropagation();
        // Rest of the code
    });
    
  2. Initialy disable all input boxes on a second page, on a pageshow event use settimeout function and enable them after cca 10 ms

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!