HelloWorld

<script src="jquery-3.1.0.js" type="text/javascript"></script>
$(document).ready(function(){
            alert("Hello jQuery");
        })

可以简写成如下形式

 $(function(){
            alert("Hello jQuery");
 }
原文地址:https://www.cnblogs.com/sherrykid/p/5716330.html