<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title>第一个简单的JQuery程序</title>
    <script language="javascript" type="text/javascript" src="../../JQuery/jquery-2.1.4.min.js"></script>
    <script type="text/javascript">
        $(document).ready(function () { alert("您好,欢迎来到JQuery世界"); });
        //$(function () {  });这种写法是  $(document).ready(function () {  });的简写形式
        $(function () { alert("JQuery 方法简写") });
    </script>
</head>
<body>

</body>
</html>

 

相关文章:

  • 2022-01-08
  • 2022-12-23
  • 2021-10-10
  • 2021-10-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-09-30
  • 2021-10-02
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-25
  • 2022-12-23
相关资源
相似解决方案