我有以下一段代碼:改變事件的執行順序
<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');
});
});
.....
根據該circustances,executiong的順序將是:
alert('Hi');
alert('Hello');
,但我想是相反的。 可以更改執行順序嗎? 謝謝
不錯,這工作:D – Diego 2010-12-20 16:00:56