<script>
$(document).ready(function(){
console.log("这是jQuery入口函数的第一种写法");
});
$(function(){
console.log("这是jQuery入口函数的第二种写法");
});
</script>
网友评论