helloworld!
簡單熟悉了jQuery的構成,我先寫一個helloworld!
代碼如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>1-1</title>
<!-- 引入 jQuery -->
<script src="../scripts/jquery-1.3.1.js" type="text/javascript"></script>
<script type="text/javascript">
//等待dom元素加載完畢.
$(document).ready(function(){
alert("Hello World!");
});
</script>
</head>
<body>
</body>
</html>
1.其中 :<script src="../scripts/jquery-1.3.1.js" type="text/javascript"></script>
本句是引入jQuery庫文件,本文件可以到http://jQuery.com網站下載
2.代碼:
代碼如下:
<script type="text/javascript">
//等待dom元素加載完畢.
$(document).ready(function(){
alert("Hello World!");
});
</script>
$(document).ready(function(){})相當於JS中的windows.onload方法,再文檔加載完畢時執行,
在jQuery中"$()"符號就相當於"jQuery()"
$(document).ready(function(){})可以簡寫為$(function(){})