jquery學習第一天
1.helloworld <html> <head> <title>jquery one</title> <script type="text/javascript" src="../js/jquery.js"></script> <script type="text/javascript"> //第一個jquery練習,彈出對話方塊hello world!; $(document).ready(function(){ alert("hello world!"); }); </script> </head> <body> </body> </html> 2.a.html <!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>鏈式操作</title> <script type="text/javascript" src="../js/jquery.js" ></script> <script> $(document).ready(function(){ $(".has_children").click(function(){ $(this).addClass("highlight") .children("a").show().end() .siblings().removeClass("highlight") .children("a").hide(); }) }) </script> <style> #menu{width:300px;} .has_children{background:#555;color:#fff;cursor:pointer;} .highlight{color:#fff;backgounrd:green;} div{padding:0;magin:10px 0;} div a{background:#888;display:none;float:left;width:300px;} </style> </head> <div id="menu"> <div class="has_children"> <span>第一章-知識</span> <a>1.1-javascript和javascript庫</a> <a>1.2-加入jquery</a> <a>1.3-編寫簡單jquery程式碼</a> <a>1.4-jquery物件和DOM物件</a> <a>1.5-解決jquery和其他庫的衝突</a> <a>1.6-jquery開發工具和外掛</a> <a>1.7-小結</a> </div> <div class="has_children"> <span>第二章-知識</span> <a>2.1-javascript和javascript庫</a> <a>2.2-加入jquery</a> <a>2.3-編寫簡單jquery程式碼</a> <a>2.4-jquery物件和DOM物件</a> <a>2.6-jquery開發工具和外掛</a> <a>2.7-小結</a> </div> <div class="has_children"> <span>第三章-知識</span> <a>3.1-javascript和javascript庫</a> <a>3.2-加入jquery</a> <a>3.3-編寫簡單jquery程式碼</a> <a>3.6-jquery開發工具和外掛</a> <a>3.7-小結</a> </div> </div> <body> </body>
b.html </html>
<!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>juqery轉化為DOM</title>
<script type="text/javascript" src="../js/jquery.js" ></script>
<script>
/*
$(document).ready(function(){
var $cr=$("#cr");
var cr=$cr[0]; //或者cr=$cr.get(0);
$cr.click(function(){
if(cr.checked){
alert("感謝你的支援,你可以繼續操作了!");
}
})
})
*/
$(document).ready(function(){
var $cr=$("#cr");
$cr.click(function(){
if($cr.is("checked")){
alert("感謝你的支援,你可以繼續操作了!");
}
})
})
</script>
</head>
<input type="checkbox" id="cr" /><label for="cr" >我已經閱讀了上面的制度</label>
<body>
</body>
</html>
相關文章
- go 第一天學習Go
- vue 第一天學習Vue
- 學習go第一天Go
- 學習HTML第一天HTML
- 學習java第一天Java
- JAVA學習第一天Java
- MarkDown 學習第一天
- Jquery學習jQuery
- NodeJS 第一天學習NodeJS
- 學習HTML的第一天HTML
- JQuery學習系列jQuery
- Jquery data()學習jQuery
- 學習jQuery之旅jQuery
- Jquery學習1jQuery
- 補打卡學習go第一天Go
- 學習筆記-JAVA第一天筆記Java
- Vue2 第一天學習Vue
- Python學習的第一天Python
- JavaWeb學習筆記——第一天JavaWeb筆記
- jQuery 學習筆記jQuery筆記
- 前端學習(四)--jQuery前端jQuery
- JQuery學習記錄jQuery
- jQuery基礎學習jQuery
- jQuery學習筆記jQuery筆記
- jQuery 學習記錄jQuery
- C++基礎學習第一天C++
- angularjs學習第一天筆記AngularJS筆記
- 學習C語言的第一天C語言
- 記錄JAVA學習的第一天Java
- 初步學習jQuery之事件jQuery事件
- jQuery學習筆記(ajax)jQuery筆記
- jQuery 學習系列筆記jQuery筆記
- Jquery學習筆記(一)jQuery筆記
- jQuery原始碼學習之$()jQuery原始碼
- jQuery學習筆記03jQuery筆記
- jQuery學習(2)ajax()使用jQuery
- jQuery 學習筆記(二)jQuery筆記
- jQuery學習筆記(2)jQuery筆記