2022年推荐一些必记的jQuery常用函数及使用技巧 .pdf
《2022年推荐一些必记的jQuery常用函数及使用技巧 .pdf》由会员分享,可在线阅读,更多相关《2022年推荐一些必记的jQuery常用函数及使用技巧 .pdf(4页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、推荐一些必记的jQuery 常用函数及使用技巧jquery 大家都在使用, 你有没有记住一些常用,一定要记住的应用函数呢?因为jquery 提供的函数非常多,不可能我们都能记住,本文就整理一些必记的jQuery 常用函数及使用技巧。高级选择器( selector)在 jQuery 中,我们可以使用各种各样的选择器,这使得选择器的使用变得非常精确。下面我们来一步一步地讲解这些选择器并看看在其他语境中如何使用这些选择器。基于属性的选择器在 HTML 中,几乎所有元素都具有属性,比如: 上面两个HMTL 元素中包含了九个属性。利用jQuery,我们可以根据元素的属性和属性值来对元素进行选择。一起看看
2、以下例子中的选择器:$(document).ready(function() /Alltheimageswhosewidthis600px $(imgwidth=600).click(function() alert(Youvejustselectedanimagewhosewidthis600px); ); /Alltheimageshavingawidthdifferentto600px $(imgwidth!=600).click(function() alert(Youvejustselectedanimagewhosewidthisnot600px); ); /Alltheinput
3、swhosenameendswithemail $(inputname$=email).focus(function() alert(Thisinputhasanamewhichendswithemail.); ); ); 在官方文档中,我们可以看到许多选择器与上例中的选择器非常类似。但关键点是一样的,属性和属性值。多重选择器如果你开放的是一个较为大型的网站,选择器的使用会变得困难。有时为了让代码变得更为简单, 最好将它们分割为两个或三个选择器。实际上这是非常简单和基础的知识,不过非常有用,我们应该把这些知识熟记于心。$(document).ready(function() /Alltheim
4、ageswhosewidthis600pxORheightis400px $(imgwidth=600,imgheight=400).click(function() alert(Selectedanimagewhosewidthis600pxORheightis400px); ); /Allpelementswithclassorange_text,divsandimages. $(p.orange_text,div,img).hover(function() alert(Selectedapelementwithclassorange_text,adivORanimage.); ); /W
5、ecanalsocombinetheattributesselectors /Allthejpgimageswithanaltattribute(thealtsvaluedoesntmatter) 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 1 页,共 4 页 - - - - - - - - - $(imgaltsrc$=.jpg).click(function() alert(You selected a jpg image with the alt attribute.);
6、); ); Widget 组件选择器除了插件的选择器之前,还有一些基于元素某些属性或位置的选择器。下面让我们看看这些更为重要的选择器:$(document).ready(function() /Allthehiddenimagesareshown $(img:hidden).show(); /The first p is going to be orange $(p:first).css(color,orange); /Inputwithtypepassword /thisis$(inputtype=password) $(input:password).focus(function() al
7、ert(Thisisapassword!); ); /Divswithparagraph $(div:has(p).css(color,green); /Wecanalsocombinethem.with() /Allnotdisabledcheckboxes $(input:checkbox(:not(:disabled).hover(function() alert(Thischeckboxisworking.); ); ); 如上例所示, 可供使用的选择器是多种多样的,并且它们之前不是互相独立的,所以我们可以将这些选择器组合起来进行使用,如上例中的选择器。理解网站的结构网络的结构可能看起
8、来非常复杂,但事实上并非如此,如果我们想要使用某些选择器以及作用于网络结构之上的方法。我们可以将网站视为一个颠倒的树,树根在顶部, 而其他元素从根部延伸出来。查看下面的代码,试着想象一棵树,树根是body 标签。 . CreateanAccount! PersonalInformation Message Footermessage 以上示例代码的树形图如下:很简单,是不是?从现在开始我们可以将html 或 xhtml 看做一棵树,不过我们想做的是程序员,这些植物学的理论有什么用处?答案就在下一个要点之中。对树进行选择和转换选择就想树一样,网站结构中叶存在子与父。在jQuery 中,我们可以利
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 2022年推荐一些必记的jQuery常用函数及使用技巧 2022 推荐 一些 jQuery 常用 函数 使用 技巧
限制150内