jQuery Mobile .delegate()未触发

时间:2011-12-23 02:43:58

标签: jquery jquery-mobile delegation

我对jQuery很新,我在与委托相关的问题上有点挣扎。 在我的代码中,我有一个动态页面加载:

    $("#results").delegate('li', 'click', function(evt){
      var queryData = "id=" + $(this).attr("id");
      if ( $(this).attr("id") ){
        $.ajax({
          type: "GET",
          url:  "wiw_detail_page.html",
          data: queryData,
          beforeSend: onDetailBeforeSend,
          success: onDetailSuccess,
          error: onError
        });
      }
      else
      {
        alert("Please select an Employee from the list");
      }
        return false;
    });

这是onDetailSuccess函数:

    function onDetailSuccess( data, status ){
      $("body").append( data );
      $("#wiw_detail_page").page( );
      $.mobile.changePage( "#wiw_detail_page", { transition: 'slide' } );
    }

一切正常,因为我将第一页移到“wiw_details_page”。 在新页面内,我有一个字段列表,在可折叠的下面,如下:

  <div data-role="collapsible" data-collapsed="false" data-theme="b" id="comData">
    <h2>Communication Data</h2>
    <div id="communicationData">
      <fieldset>
        <label for="address">Address:</label>
        <a href="#locationMap">
          <input class="goMap" type="text" 
                 name="address" id="address" 
                 disabled="true" 
                 value="<%=employeeprofile-building%>"/>
        </a>
      </fieldset>
    </div>
  </div>

我需要在地址输入字段上附加一个点击处理程序,因为这个页面还没有在$(document).ready()创建,所以我附上了一个委托给它:

    // Use delegation, since detail view is not availble at document.ready time:
    $("#wiw_detail_page").delegate('input.goMap','click', function(evt){
      if ( $(this).attr( "id" ) == 'address' ){
        alert("Click!");
        if ( navigator.geolocation ) {
          detectBrowser( );
          navigator.geolocation.getCurrentPosition( function( position ){
            newInitialize( position.coords.latitude, position.coords.longitude );
          })
        }else{
          detectBrowser( );
          newInitialize(45.06150, 7.65599);
        }
      }
     });

    });

这个委托永远不会发生,当我点击输入字段时没有任何反应(甚至没有任何错误)。

我还尝试将选择器更改为:

    $("#comData").delegate('input.goMap','click', function(evt)

作为绝望的尝试,我将其改为:

    $("body").delegate('input.goMap','click', function(evt)

有任何线索吗?

抱歉这么久的问题,并提前致谢, R上。

1 个答案:

答案 0 :(得分:0)

您想尝试#communicationData,例如:

$("#communicationData").delegate('input.goMap','click', function(evt) {...}