3

I'm making table rows click-able with jQuery's $.live() function.
Works perfectly on Chrome, Firefox and even desktop Windows Safari -- but not on the iPhone.
$.bind() works everywhere, but for obvious reasons I'd like to use the other function.

Does anyone have any idea why it doesn't work and how can I fix it?
Example code below.

<!DOCTYPE html>
<html lang="en">
<head>
 <title>test</title>
 <meta charset="utf-8" />
 <meta name="viewport" content="user-scalable=no,width=device-width" />
 <meta name="apple-mobile-web-app-capable" content="yes" />
 <style type="text/css">table { width: 100%; border-collapse: collapse; } table tr {     background: #eee; } table td { padding: 10px; border-top: 1px solid #ccc; }</style>
 <script type="text/javascript" src="http://jquery.com/src/jquery-latest.pack.js">        </script>
 <script type="text/javascript">
$(document).ready(function() {
  /* $.bind() works */
  /*
  $('table').find('tr').bind('click', function() {
    alert($(this).text());
  });
  */
  /* $.live() doesn't */
  $('table').find('tr').live('click', function() {
    alert($(this).text());
  });
});
 </script>
</head>
<body>
 <table>
  <tbody>
   <tr><td>words are flying out \ </td><td>like endless rain into a paper cup</td></tr>
   <tr><td>they slither while they pass \ </td><td>they slip away across the             universe</td></tr>
  </tbody>
 </table>
</body>
</html>
4

1 に答える 1

1

このコードの問題の 1 つは、使用方法が.live間違っていることです。セレクターで直接呼び出す必要があります。

$('table tr').live( /* ... */)

仕様から:

DOM トラバーサル メソッドは、.live() に送信する要素を見つけるために完全にはサポートされていません。むしろ、.live() メソッドは常にセレクターの直後に呼び出す必要があります。

次に、jQuery 1.4.2 では、おそらく以下を使用することをお勧めしますdelegate

$('table').delegate('tr', 'click', function(){/* ... */} );
于 2010-06-18T20:01:18.733 に答える