首页 > 代码库 > 第一个jQuery程序

第一个jQuery程序

 

 

技术分享
<!DOCTYPE html><html><head lang="en">    <meta charset="UTF-8">    <title>第一个jQuery程序</title>    <script type="text/javascript" src="js/jquery-1.8.3.min.js"></script>    <script type="text/javascript">        $(function(){            alert("我编写的第一个jQuery程序!^_^");        })    </script></head><body></body></html>
第一个jQuery程序.html

 

第一个jQuery程序