通过 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();
});
这里有一个 TAG
<li><a href="#" class="fav" ></a></li>