调用jQuery:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <!--调用jQuery的方式--> <script type="text/javascript" src="jquery-1.3.13.js"></script> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.0/jquery.min.js"></script> </head> <body> </body> </html>
jQuery规范:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<!--调用jQuery的方式-->
<script type="text/javascript" src="jquery-1.3.13.js"></script>
<!--一般会把jQuery放到body中,目的是先加载文档树,然后再加载JavaScript-->
<script type="text/javascript">
$(document.ready(function(){
}));
$(function(){
})
</script>
</head>
<body>
</body>
</html>本文出自 “小东哥” 博客,谢绝转载!
原文:http://xiaodongge.blog.51cto.com/11636589/1886977