通过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>