- 浏览: 137695 次
- 性别:
- 来自: 武汉
文章分类
最新评论
-
gezi2213:
...
HttpClient及有关jar包详解 -
sailor119:
学习一下!
〖ExtJS〗之ToolBar
The
use of thejQuery library
is growing and growing(just releasedjQuery 1.4
),
more and more people are using this useful javascript library. This means that more and more useful jQuery tips, tricks and solutions are coming available. That’s why i created a small list of 26 cool and useful jQuery tips, tricks and solutions.
jQuery has a lot of very usefulplugins
that can help you with almost anything, but there are a couple of plugins that aren’t that smart to use, why? Well sometimes 1 or 2 lines of jQuery code can do the same thing(or even better), so why use a big script if you can do the same trick with a small
piece of code.
As many of you already know, jQuery can do a lot of things in more than just one way, so if you see a tip, trick or
solution and think/know this can be done better, smarter or faster please let me know, post and share it in a comment below of just email me this, so that i can use this for part 2.
● Disable right-click(禁止右键点击)
Disable right-click contextual menu.
- $(document).ready(function (){
- $(document).bind("contextmenu" ,function (e){
- return false ;
- });
- });
● Disappearing search field text(隐藏搜索文本框文字)
Hide when clicked in the search field, the value.(example can be found below in the comment fields)
- $(document).ready(function (){
- $("input.text1" ).val("Enteryoursearchtexthere" );
- textFill($('input.text1' ));
- });
- //inputfocustextfunction
- function textFill(input){
- var originalvalue=input.val();
- input.focus(function (){
- if ($.trim(input.val())==originalvalue){
- input.val('' );
- }
- });
- input.blur(function (){
- if ($.trim(input.val())=='' ){
- input.val(originalvalue);
- }
- });
- }
● Opening links in a new window(在新窗口中打开链接)
XHTML 1.0 Strict doesn’t allow this attribute in the code, so use this to keep the code valid.
- $(document).ready(function (){
- //Example1:Everylinkwillopeninanewwindow
- $('a[href^="http://"]' ).attr("target" ,"_blank" );
- //Example2:Linkswiththerel="external"attributewillonlyopeninanewwindow
- $('a[@rel$=' external']' ).click(function (){
- this .target="_blank" ;
- });
- });
- //howtouse
- <ahref="http://www.opensourcehunter.com" rel="external" >openlink</a>
● Detect browser(检测浏览器)
Change/add something for a certain browser.
Notice: As of jQuery 1.4, the $.browser variable is replaced by $.support.
- $(document).ready(function (){
- //TargetFirefox2andabove
- if ($.browser.mozilla&&$.browser.version>="1.8" ){
- //dosomething
- }
- //TargetSafari
- if ($.browser.safari){
- //dosomething
- }
- //TargetChrome
- if ($.browser.chrome){
- //dosomething
- }
- //TargetCamino
- if ($.browser.camino){
- //dosomething
- }
- //TargetOpera
- if ($.browser.opera){
- //dosomething
- }
- //TargetIE6andbelow
- if ($.browser.msie&&$.browser.version<=6){
- //dosomething
- }
- //TargetanythingaboveIE6
- if ($.browser.msie&&$.browser.version>6){
- //dosomething
- }
- });
● Preloading images(预加载图片)
This piece of code will prevent the loading of all images, which can be useful if you have a site with lots of images.
- $(document).ready(function (){
- jQuery.preloadImages=function (){
- for (var i=0;i<arguments.length;i++){
- $("<img>" ).attr("src" ,arguments[i]);
- }
- }
- //howtouse
- $.preloadImages("image1.jpg" );
- });
● CSS Styleswitcher(页面样式切换)
Switch between different styles?
- $(document).ready(function (){
- $("a.Styleswitcher" ).click(function (){
- //swicththeLINKRELattributewiththevalueinARELattribute
- $('link[rel=stylesheet]' ).attr('href' ,$(this ).attr('rel' ));
- });
- });
- //howtouse
- //placethisinyourheader
- <linkrel="stylesheet" href="default.css" type="text/css" >
- //thelinks
- <ahref="#" class ="Styleswitcher" rel="default.css" >DefaultTheme</a>
- <ahref="#" class ="Styleswitcher" rel="red.css" >RedTheme</a>
- <ahref="#" class ="Styleswitcher" rel="blue.css" >BlueTheme</a>
● Columns of equal height(列高度相同)
If you are using two CSS columns, use this to make them exactly the same height.
- $(document).ready(function (){
- function equalHeight(group){
- tallest=0;
- group.each(function (){
- thisHeight=$(this ).height();
- if (thisHeight>tallest){
- tallest=thisHeight;
- }
- });
- group.height(tallest);
- }
- //howtouse
- $(document).ready(function (){
- equalHeight($(".left" ));
- equalHeight($(".right" ));
- });
- });
● Font resizing(动态控制页面字体大小)
Want to let the users change there font size?
- $(document).ready(function (){
- //Resetthefontsize(backtodefault)
- var originalFontSize=$('html' ).css('font-size' );
- $(".resetFont" ).click(function (){
- $('html' ).css('font-size' ,originalFontSize);
- });
- //Increasethefontsize(biggerfont0
- $(".increaseFont" ).click(function (){
- var currentFontSize=$('html' ).css('font-size' );
- var currentFontSizeNum=parseFloat(currentFontSize,10);
- var newFontSize=currentFontSizeNum*1.2;
- $('html' ).css('font-size' ,newFontSize);
- return false ;
- });
- //Decreasethefontsize(smallerfont)
- $(".decreaseFont" ).click(function (){
- var currentFontSize=$('html' ).css('font-size' );
- var currentFontSizeNum=parseFloat(currentFontSize,10);
- var newFontSize=currentFontSizeNum*0.8;
- $('html' ).css('font-size' ,newFontSize);
- return false ;
- });
- });
● Smooth(animated) page scroll(返回页面顶部功能)
For a smooth(animated) ride back to the top(or any location).
- $(document).ready(function (){
- $('a[href*=#]' ).click(function (){
- if (location.pathname.replace(/^\//,'')==this.pathname.replace(/^\//,'')
- &&location.hostname==this .hostname){
- var $target=$(this .hash);
- $target=$target.length&&$target||$('[name=' +this .hash.slice(1)+']' );
- if ($target.length){
- var targetOffset=$target.offset().top;
- $('html,body' ).animate({scrollTop:targetOffset},900);
- return false ;
- }
- }
- });
- });
- //howtouse
- //placethiswhereyouwanttoscrollto
- <aname="top" ></a>
- //thelink
- <ahref="#top" >gototop</a>
● Get the mouse cursor x and y axis(获得鼠标指针 X/Y 值)
Want to know where your mouse cursor is?
- $(document).ready(function (){
- $().mousemove(function (e){
- //displaythexandyaxisvaluesinsidethedivwiththeidXY
- $('#XY' ).html("XAxis:" +e.pageX+"|YAxis" +e.pageY);
- });
- });
- //howtouse
- <divid="XY" ></div>
● Verify if an Element is empty(验证元素是否为空)
This will allow you to check if an element is empty.
● Replace a element(替换元素)
Want to replace a div, or something else?
- $(document).ready(function (){
- $('#id' ).replaceWith('<div>Ihavebeenreplaced</div>' );
- });
● jQuery timer callback functions(jQuery 延时加载功能)
Want to delay something?
- $(document).ready(function (){
- window.setTimeout(function (){
- //dosomething
- },1000);
- });
● Remove a word(移除单词功能)
Want to remove a certain word(s)?
- $(document).ready(function (){
- var el=$('#id' );
- el.html(el.html().replace(/word/ig,"" ));
- });
● Verify that an element exists in jQuery(验证元素是否存在)
Simply test with the .length property if the element exists.
● Make the entire DIV clickable(使整个 DIV 可点击)
Want to make the complete div clickable?
- $(document).ready(function (){
- $("div" ).click(function (){
- //gettheurlfromhrefattributeandlaunchtheurl
- window.location=$(this ).find("a" ).attr("href" );
- return false ;
- });
- });
- //howtouse
- <div><ahref="index.html" >home</a></div>
● Switch between classes or id’s when resizing the window(id 与 class 之间转换)
Want to switch between a class or id, when resizing the window?
- $(document).ready(function (){
- function checkWindowSize(){
- if ($(window).width()>1200){
- $('body' ).addClass('large' );
- }else {
- $('body' ).removeClass('large' );
- }
- }
- $(window).resize(checkWindowSize);
- });
● Clone a object(克隆对象)
Clone a div or an other element.
- $(document).ready(function (){
- var cloned=$('#id' ).clone();
- });
- //howtouse
- <divid="id" ></div>
● Center an element on the screen(使元素居屏幕中间位置)
Center an element in the center of your screen.
- $(document).ready(function (){
- jQuery.fn.center=function (){
- this .css("position" ,"absolute" );
- this .css("top" ,($(window).height()-this .height())/2+$(window).scrollTop()+"px" );
- this .css("left" ,($(window).width()-this .width())/2+$(window).scrollLeft()+"px" );
- return this ;
- }
- $("#id" ).center();
- });
● Write our own selector(写自己的选择器)
Write your own selectors.
- $(document).ready(function (){
- $.extend($.expr[':' ],{
- moreThen1000px:function (a){
- return $(a).width()>1000;
- }
- });
- $('.box:moreThen1000px' ).click(function (){
- //creatingasimplejsalertbox
- alert('Theelementthatyouhaveclickedisover1000pixelswide' );
- });
- });
● Count a element(统计元素个数)
Count an element.
● Use Your Own Bullets(使用自己的 Bullets)
Want to use your own bullets instead of using the standard or images bullets?
- $(document).ready(function (){
- $("ul" ).addClass("Replaced" );
- $("ul>li" ).prepend("-" );
- });
- //howtouse
- ul.Replaced{list-style:none;}
● Let Google host jQuery for you(引用 Google 主机上的 jQuery 类库)
Let Google host the jQuery script for you. This can be done in 2 ways.
- //Example1
- <scriptsrc="http://www.google.com/jsapi" ></script>
- <scripttype="text/javascript" >
- google.load("jquery" ,"1.2.6" );
- google.setOnLoadCallback(function (){
- //dosomething
- });
- </script>
- //Example2:(thebestandfastestway)
- <scripttype="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js" ></script>
● Disable jQuery animations(禁用 jQuery 动画效果)
Disable all jQuery effects.
● No conflict-mode(与其他 Javascript 类库冲突解决方案)
To avoid conflict other libraries on your website, you can use this jQuery Method, and assign a different variable name
instead of the dollar sign.
发表评论
-
Jquery表单取值赋值
2012-11-26 09:24 517先留几个使用中感觉 ... -
jQuery TAB插件
2012-11-22 16:48 791最近的项目用到TAB效果的地方较多,于是自己稍微封装了下,写成 ... -
漂亮的自定义jQueryUI主题
2012-11-21 11:35 1028之前的项目中,使用的是jqueryUI的UI组件,jquery ... -
A better Tooltip with jQuery
2012-11-08 09:50 865在国外的一个网站上看到了一份不错的jQuery 插件,主要是样 ... -
Jquery 经典插件收集
2012-11-05 10:29 7351.Floater 这个插件可以帮助你构建可以重新排 ... -
jQuery学习之:jqGrid表格插件——从Struts2获得数据
2012-09-25 16:16 1010之前谈到了jqGrid与Serlvet/JSP集成,实际上就是 ...
相关推荐
实验室管理系统 微信小程序+SSM毕业设计 源码+数据库+论文+启动教程 项目启动教程:https://www.bilibili.com/video/BV1BfB2YYEnS
基于java的苹果网吧计费管理系统设计与实现.docx
纸中世界-跳跃游戏.sb3
本操作指导用于在 ENA 系列网络分析仪 E5080B 上自定义校准件。目前 Keysight 网络分析仪的 PNA 系列 N52xxB、P50xx 系列、P937x 系列、PXI 板卡式网分以及 ENA 系列的 E5080B、E5081B 的操作界面均统一到如下界面,操作方式相同。
调查海域浮游动物各类群栖息密度的空间分布表格.docx
本项目“高校毕业生就业管理系统”是一套基于SSM框架(Spring+SpringMVC+MyBatis)精心开发的Java Web应用,旨在为高校毕业生、高校就业指导部门以及企业用户提供一个高效、便捷的就业信息管理平台。 系统主要功能包括:学生用户可以查看和发布个人简历,搜索并筛选合适的工作岗位,申请心仪的职位;企业用户可以发布招聘信息,筛选和查看应聘者的简历,进行面试邀请等操作;高校就业指导部门则可以对学生的就业情况进行统计和分析,以更好地提供就业指导服务。 此外,系统采用了B/S架构,用户只需通过浏览器即可访问,无需安装客户端软件,方便快捷。数据库设计合理,数据存储安全,系统性能稳定。 本项目的开发,不仅为计算机相关专业的学生提供了一个实践SSM框架的好机会,帮助他们更好地理解和掌握Java Web开发技术,还能有效提升高校毕业生的就业效率和质量。
电影剪辑 笔记MoviePy 最近升级到 v2.0,引入了重大的重大变化。有关如何更新 v2.0 代码的更多信息,请参阅本指南。MoviePy(在线文档在此处)是一个用于视频编辑的 Python 库剪切、连接、插入标题、视频合成(又名非线性编辑)、视频处理和创建自定义效果。MoviePy 可以读取和写入所有最常见的音频和视频格式,包括 GIF,并且可以在 Windows/Mac/Linux 上运行,并搭载 Python 3.9+。例子在此示例中,我们打开一个视频文件,选择 10 到 20 秒之间的子剪辑,在屏幕中心添加标题,然后将结果写入新文件# Import everything needed to edit video clipsfrom moviepy import *# Load file example.mp4 and keep only the subclip from 00:00:10 to 00:00:20clip = VideoFileClip("long_examples/example2.mp4").with_subcl
基于java的视频播放器系统设计与实现.docx
基于java的车辆出租管理系统设计与实现.docx
mqtt等协议的pcap文件
学习python
修木工施工规范及流程.docx
适用于 Windows/Linux 和 Python 3 (3.5/3.6/3.7) 的 Tensorflow Faster R-CNNtf-faster-rcnn使用 Python 3 在 Windows 和 Linux 上使用 Tensorflow Faster R-CNN这是在 Windows 和 Linux 上编译 Faster R-CNN 的分支。它深受这里和这里的出色工作的启发。目前,此存储库支持 Python 3.5、3.6 和 3.7。感谢@morpheusthewhite请注意我没有时间或意图修复此分支的所有问题,因为我不将其用于商业用途。我创建此分支只是为了好玩。如果您想做出任何承诺,我们非常欢迎。Tensorflow 已经发布了一个对象检测 API。请参考它。https: //github.com/tensorflow/models/tree/master/research/object_detection如何使用此分支安装 tensorflow,最好是 GPU 版本。按照说明操作。如果没有安装 GPU 版本,则需要注释掉代码中的所有 GP
Python是一种高级、解释型、面向对象的编程语言,以其简洁的语法、强大的功能和广泛的应用领域而著称。它无需事先编译,代码在运行时逐行解释执行,提供了极大的灵活性和快速开发的能力。Python支持多种数据类型,包括整数、浮点数、字符串、布尔值、列表、元组、字典和集合等,以及丰富的操作符和流程控制结构,使得开发者可以编写出复杂且灵活的代码。 Python拥有一个广泛的标准库,涵盖了文件操作、网络通信、文本处理、正则表达式、数学运算等多个领域,为开发者提供了大量的模块和函数。此外,Python还拥有丰富的第三方库,如NumPy、Pandas、Matplotlib等用于数据分析和可视化的库,以及Django、Flask等用于Web开发的框架,这些库和框架进一步扩展了Python的应用领域和功能。 Python在Web开发、数据科学、人工智能、自动化运维和游戏开发等多个领域都有广泛的应用。在Web开发方面,Python提供了Django和Flask等强大的Web框架,使得开发者可以轻松地开发出各种Web应用和网站。在数据科学领域,Python是数据科学家的首选工具,其强大的数据处理能力和丰
本项目是基于Python语言开发的西西家居全屋定制系统,旨在为家居行业提供一个高效、智能的定制解决方案。项目涵盖了从客户需求分析、设计方案生成、材料选购到最终订单生成的全过程,力求实现家居定制的数字化和智能化。 在主要功能方面,系统具备强大的客户管理模块,能够详细记录和分析客户的定制需求。设计模块则采用先进的三维建模技术,为客户提供直观、真实的家居设计方案预览。此外,系统还整合了丰富的材料数据库,方便客户根据自身喜好和预算进行材料选择。 框架方面,项目采用了B/S架构,确保了系统的稳定性和可扩展性。后端使用Python的Django框架,前端则结合了HTML、CSS和JavaScript等技术,实现了用户界面的友好和响应速度。 开发此项目的目的,不仅是为了满足家居行业对个性化定制的需求,也为计算机相关专业的学生提供了一个实践和学习的平台,有助于提升他们的实际开发能力。
Binance公共API连接器Python 这是一个轻量级库,可作为Binance 公共 API的连接器支持的 API/api/*/sapi/*现货 Websocket 市场动态现货用户数据流现货 WebSocket API包含测试用例和示例可定制的基本 URL、请求超时和 HTTP 代理可以显示响应元数据安装pip install binance-connector文档https://binance-connector.readthedocs.ioRESTful API使用示例from binance.spot import Spotclient = Spot()# Get server timestampprint(client.time())# Get klines of BTCUSDT at 1m intervalprint(client.klines("BTCUSDT", "1m"))# Get last 10 klines of BNBUSDT at 1h intervalprint(client.k
Aptana是一个非常强大,开源,JavaScript-focused的AJAX开发IDE。 Aptana的特点包括: 1JavaScript,HTML,CSS语言的Code Assist功能。 2Outliner(大纲):显示JavaScript,HTML和CSS的代码结构。
学习自律养成小程序 微信小程序+SSM毕业设计 源码+数据库+论文+启动教程 项目启动教程:https://www.bilibili.com/video/BV1BfB2YYEnS
认知能力评估表.docx
数学建模学习资料 粒子群算法 先进算法讲义.pdf