浅谈JQUREY(摘自blog.csdn/softwave/article/details/2070815)
JQUERY手册(第七页 ,附教程)
Jquery是继prototype之后又一个优秀的Javascript框架。对prototype我使用不多,简单了解过。但使用上jquery之后,马上被她的优雅吸引住了。有人使用这样的一比喻来比较prototype和jquery:prototype就像Java,而jquery就像ruby.实际上我比较喜欢java(少接触Ruby罢了)但是jquery的简单的实用的确有相当大的吸引力啊!在项目里我把jquery作为自已唯一的框架类包。使用其间也有一点点心得,其实这些心得,在jquery的文档上面也可能有讲,不过还是记下来,以备忘罢。
一,到你了!
还记得$()这个东西吧?prototype还是DWR都使用了这个函数代替ElementById()。没错,jquery也跟风了。为达到ElementById()的目的,jquery是这样写的:
Java代码
1. var someElement = $("#myId");
[java] view plaincopyprint?
1. var someElement = $("#myId");
var someElement = $("#myId");
看起来比其他两个框架的要多了一个#,好,看看下面的用法:
Java代码
1. $("div p");(1)
2. $("ainer")(2)
3. $("div #msg");(3)
4. $("table a",context);(4)
[java] view plaincopyprint?
1. $("div p");(1) $("ainer")(2) $("div #msg");(3) $("table a",context);(4)
$("div p");(1) $("ainer")(2) $("div #msg");(3) $("table a",context);(4)
在prototype里看过这样的写法吗?第一行代码得到所有<div>标签下的<p>元素。第二行代码得到class 为container的<div>元素,第三行代码得到<div>标签下面id为msg的元素。第四行代码得到context为 上下文的table里面所有的连接元素。
如果你熟悉CSS,Xpath,你会觉得这些写法很眼熟!对了。正是。看出奥妙了吧。jquery就是通过这样的方式来到Dom对象里面的元素。跟CSS的选择器相类似。
二,Jquery对象?
jquery提供了很多便利的函数,如each(fn),但是使用这些函数的前提是:你使用的对象是Jquer对象。使一个Dom对象成为一个Jquery对象很简单,通过下面一些方式(只是一部分):
Java代码
1. var a = $("#cid");(1)
2. var b = $("<p>hello</p>");(2)
3. var c =&ateElement("table"); var tb = $(c);
[java] view plaincopyprint?
1. var a = $("#cid");(1) var b = $("<p>hello</p>");(2) var c =&ateElement("table"); var tb = $(c);
var a = $("#cid");(1) var b = $("<p>hello</p>");(2) var c = ateElement("table"); var tb = $(c);
三,代替body标签的onload
这个惯例,也许是除了$()之外,用得最多的地方了。下面一段代码:
Java代码
1. $(document).ready(function(){
2. alert("hello");
3. });(1)
4.
5. <body onload="alert('hello');">(2)
[java] view plaincopyprint?
1. $(document).ready(function(){ alert("hello"); });(1) <body onload="alert('hello');">(2)
$(document).ready(function(){ alert("hello"); });(1) <body onload="alert('hello');">(2)
上面两段代码是等价的。但代码1的好处是做到表现和逻辑分离。并且可以在不同的js文件中做相同的操作,即$(document).ready (fn)可以在一个页面中重复出现,而不会冲突。基本上Jqeury的很多plugin都是利用这个特性,正因为这个特性,多个plugin共同使用起 来,在初始化时不会发生冲突。
不管怎么说,这个惯例可以分离javascript与HTML。推荐使用。
四,事件机制
我大量使用的事件可能就是button的onclick了。以前习惯在input 元素上写onclick = "fn()",使用jquery可以使javascript代码与html代码分离,保持HTML的清洁,还可以很轻松地绑定事件,甚至你可以不知道“事件”这个名词。
我大量使用的事件可能就是button的onclick了。以前习惯在input 元素上写onclick = "fn()",使用jquery可以使javascript代码与html代码分离,保持HTML的清洁,还可以很轻松地绑定事件,甚至你可以不知道“事件”这个名词。
Java代码
1. $(document).ready(function(){
2. $("#clear").click(function(){
3. alert("i am about to clear the table");
4. });
5. $("form[0]").submit(validate);
6. });
7. function validate(){
8. //do some form validation
9. }
[java] view plaincopyprint?
1. $(document).ready(function(){ $("#clear").click(function(){ alert("i am about to clear the table"); }); $("form[0]").submit(validate); }); function validate(){ //do some form validation }
$(document).ready(function(){ $("#clear").click(function(){ alert("i am about to clear the table"); }); $("form[0]").submit(validate); }); function validate(){ //do some form validation }
五,同一函数实现set&get
Java代码
1. $("#msg").html();
2. $("#msg").html("hello");
[java] view plaincopyprint?
1. $("#msg").html(); $("#msg").html("hello");
$("#msg").html(); $("#msg").html("hello");
上面两行代码,调用了同样的函数。但结果却差别很大。
第一行是返回指定元素的HTML值,第二行则是将hello这串字符设置到指定元素中。jquery的函数大部分有这样的特性。
六,ajax
这是一个ajax横行的时代。多少人,了不了解ajax的都跟着用上一把。呵。使用jquery实现ajax同样简单异常
Java代码
1. $.get("search.do",{id:1},rend);
2. function rend(xml){
3. alert(xml);
4. } (1)
5. $.post("search.do",{id:1},rend);
6. function rend(xml){
7. alert(xml);
8. } (2)
9.
10. $("#msg").ajaxStart(function(){
11. this.html("正在加载。。。。");
12. });(3)
13. $("#msg").ajaxSuccess(function(){
14. this.html("加载完成!");
15. });(4)
[java] view plaincopyprint?
1. $.get("search.do",{id:1},rend); function rend(xml){ alert(xml); } (1) $.post("search.do",{id:1},rend); function rend(xml){ alert(xml); } (2) $("#msg").ajaxStart(function(){ this.html("正在加载。。。。"jquery学习在线教程); });(3) $("#msg").ajaxSuccess(function(){ this.html("加载完成!"); });(4)
$.get("search.do",{id:1},rend); function rend(xml){ alert(xml); } (1) $.post("search.do",{id:1},rend); function rend(xml){ alert(xml); } (2) $("#msg").ajaxStart(function(){ this.html("正在加载。。。。"); });(3) $("#msg").ajaxSuccess(function(){ this.html("加载完成!"); });(4)
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论