使用Jquery mobile将弹出窗口显示到动态列表视图中

时间:2013-10-18 10:35:03

标签: jquery jquery-mobile

通过WS显示动态列表视图后,我想点击该项目以显示弹出窗口 我使用了教程http://view.jquerymobile.com/master/demos/popup-dynamic 但是当我尝试静态列表

时,它不适用于动态列表和工作

JS:

$( document ).on( "pagecreate", "#rr",function() {

forge.request.ajax({
//call the WS and fill out the list.
});

 $( ".fav" ).on( "click", function() {
    var target = $( this ),
        // do some things
    $.mobile.activePage.append( popup ); 
    $('[data-role=popup]').popup();
}); 

这里是一个标签

<li><a href="#" class="fav" ></a></li>

0 个答案:

没有答案