$(document).ready(function(){ // Your code here... });
现在我看到人们最近这样做了:
<script type="text/javascript"> $(function(){ // Your code here... }); </script>
这两种方式做同样的事情吗?
我在这里看到一个匿名函数在jquery选择器中声明,但实际上从未被调用过,但是通过页面运行的方式,它似乎只能在pageload上运行.
(编辑反映评论中的问题)