<!DOCTYPE html>
<html>
<head><meta charset="utf-8">
<meta name = 'keywords' content="">
<meta name = 'descriptioon' content=“jQuery、jQury UI、jQuery Mobile”>
<title>jQuery、jQury UI、jQuery Mobile</title><script type="text/javascript" src='js/jquery-2.2.1.min.js'></script>
</head>
<body><!-- 第一章、jQuery入门1、不用在HTML代码中混杂大量的onclick属性,可以使用jQuery选取所有需要响应click事件的元素并在其上绑定事件处理程序。2、避免在HTML页面中直接嵌入CSS和Javascript3、each迭代数组$("p").each(function(index.el){$(el).})4、maparr = $.map(arr,function(val,index){return "" + value;})1.6使用数组元素1.get()2.[]1.7index获取元素位置1.8、grep()在数组中查找元素var array = $.grep(arr,function(value,index){return value.indexOf("r")>=0;})1.14、使用extend扩展对象var newObj = $.extend({},obj1,obj2);第二章、选取元素2.2 filter()优化选取集.filter(":odd").2.3 find() children() 2.4 has() is()2.8 coutains() 包含某文字的元素第三章 修改页面3.2 removeClassaddClass3.4 attr 只能用于attribute值prop 只能读取property值第四章4.2在画布上绘图<h2>Draw in the canvas</h2><canvas id = "target" width="450" height="450" style="border: 1px solid red;"></canvas><script type="text/javascript">$(document).ready(function(){var context = $("#target")[0].getContext("2d");var draw = false;$("#target").mousedown(function(){draw = true;}).mouseup(function(){draw = false;}).mouseout(function(){draw = false;}).mousemove(function(event){var pos = $(this).position();if(draw){context.fillRect(event.pageX-pos.left,event.pageY-pos.top,2,2);}})})</script>4.6、live die4.7 delegate第五章 与服务器通信5.2 get5.3 $().load("...html");5.4 promise--></body>
</html>