私は次のコードがあります。そのcircustancesの下変更イベントjQuery.liveを使用して実行順序()
<html>
<head>
<script src="myplugin.js" />
<script>
$(document).ready(function() {
$('#mytable tbody tr').live('click', function() {
alert('Hi');
});
});
</script>
</head>
<body>
<script>
$('#mytable').myplugin();
</script>
<table id="mytable">
<tbody>
<tr>
<td>Something</td>
</tr>
</tbody>
</table>
</body>
</html>
myplugin.js code
.....
return this.each(function(index, id) {
$(id + ' tbody tr').live('click', function() {
alert('Hello');
});
});
.....
を、executiongの順序は次のようになります。
alert('Hi');
alert('Hello');
が、私がしたいです逆である。 これは実行順序を変更できますか?あなたがすべき
ニース、これはうまくいきました:D – Diego