之間有什麼不同我知道jquery .on()的用法和用途,因爲我使用它。
,但我想知道什麼是$之間的差異(文件)。在()與$(元素)。在()在這個腳本
<html>
...
<body>
...
<table id="table-user">
<thead>...</thead>
<tbody>
AJAX DINAMYC CONTENT
</tbody>
</table>
....
<script>
$(document).on('click','.btn-edit',function(){
go_edit();
});
$('#table-user').on('click','.btn-edit',function(){
go_edit();
});
</script>
</body>
</html>
是任何性能不同,或者他們之間的其他什麼東西?
[差異$之間(文件)。在和$的可能的複製( '#submit').on](http://stackoverflow.com/questions/27813791/difference-between-document-on-and-submit-on) –
owh man。我得到了答案。非常感謝 – plonknimbuzz