jQuery一共有三种写法,写法如下:
<script type="text/javascript" src="js/jquery-1.9.1.min.js"></script>
<script>
//第一种写法
$(function(){
$("div").html("");
// add your code here
})
//第二种写法
$(document).ready(function(){
$("div").html("");
$("a").click(function(){
// add your code here
})
})
//第三种写法
window.onload = function(){
// add your code here
}
</script>
其中,第一种是简写方式,通常都使用这个,简便好记!
多学、 多记、 多练、