6

我对 jquery mobile 中的列表视图有疑问。我想使用 JSON 从服务器加载一些数据并用这些项目填充你的列表视图。这很好用。但是当我试图对点击一个新加载的项目做出反应时,我确实得到了这个事件!我想我必须以某种方式刷新视图,有点不知道如何。

我在http://jsfiddle.net/VqULm/227/上做了一个小草图

当你点击点击我按钮时,不再跟踪项目上的点击事件。我如何获得新项目的“工作”警报?

非常感谢您的阅读!

4

3 回答 3

21

尝试

    $('#listview').on('click', 'li', function() {
        alert("Works"); // id of clicked li by directly accessing DOMElement property
    });

jQuery > 1.7

演示

或者

$('#listview li').live('click', function() {
    alert("Works"); // id of clicked li by directly accessing DOMElement property
});

使用您的 jQuery 版本 1.6.4。

演示

为什么你需要这个

因为。您在页面重新加载后添加lilistview因此这些lis 的任何事件都应该live(对于您使用的 jQuery 版本)或delegate(jQuery > 1.7)。

于 2012-06-04T16:07:43.783 回答
3

如果您的 JQM 版本较旧(例如我的 jqm 1.2.0),并且上述两种方法都不适合您

试试这个:

     <ul data-role="listview" id="myList">
       <li id="1" >text</li>
     </ul>

     //on the js code use delegate
     $('#myList').delegate('li', 'click', function () {
         alert($(this).attr('id'));
     });
于 2013-11-27T09:03:33.357 回答
2

到远程数据源和liswiew

用 div 包裹 ul 元素

<div data-role="page" id="myPage">
  <form id="myform" class="ui-filterable">
    <input id="what" data-type="search" placeholder="i.e.Carpentry...">
    <div id="w_what">
      <ul id="ul_what" data-role="listview" data-inset="true" data-filter="true" data input="#what">
      </ul>
     </div>
   </form>
 </div>

$( "#ul_what" ).on( "filterablebeforefilter", function ( e, data ) {
    var $ul = $( this ),
    $input = $( data.input ),
    value = $input.val(),
    html = "";
    $ul.html( "" );       // initially null 
    $('#w_what').show();  // For next search
    if ( value && value.length > 0 ) {
        $ul.html( "<li><div class='ui-loader'><span class='ui-icon ui-icon-loading'></span></div></li>" );
        $ul.listview( "refresh" );
        $.ajax({
            url: "/php/getWhat.php", // Ajax url
            dataType: "json",        // json 
            data: {
                q: $input.val()      // which value to be searched
            }
        })
        .then( function ( response ) {
            $.each( response, function ( id, val ) {
                html += "<li>" + val.text + "</li>";  // json response has text element
            });
            $ul.html( html );
            $ul.listview( "refresh" );
            $ul.trigger( "updatelayout");
        });
    }
});

$('#ul_what').delegate('li', 'click', function () {
    var ul = $(this);          // when clicked
    $('#what').val(ul.text()); // set the value for input       
    $('#w_what').hide();       // hide the div 

 });

希望对某人有所帮助

于 2014-09-21T18:51:30.490 回答