- 浏览: 2174161 次
- 性别:
- 来自: 上海
文章分类
- 全部博客 (1878)
- [网站分类]ASP.NET (141)
- [网站分类]C# (80)
- [随笔分类]NET知识库 (80)
- [随笔分类]摘抄文字[非技术] (3)
- [随笔分类]养生保健 (4)
- [网站分类]读书区 (16)
- [随笔分类]赚钱 (7)
- [网站分类].NET新手区 (233)
- [随笔分类]网站 (75)
- [网站分类]企业信息化其他 (4)
- [网站分类]首页候选区 (34)
- [网站分类]转载区 (12)
- [网站分类]SQL Server (16)
- [网站分类]程序人生 (7)
- [网站分类]WinForm (2)
- [随笔分类]错误集 (12)
- [网站分类]JavaScript (3)
- [随笔分类]小说九鼎记 (69)
- [随笔分类]技术文章 (15)
- [网站分类]求职面试 (3)
- [网站分类]其他技术区 (6)
- [网站分类]非技术区 (10)
- [发布至博客园首页] (5)
- [网站分类]jQuery (6)
- [网站分类].NET精华区 (6)
- [网站分类]Html/Css (10)
- [随笔分类]加速及SEO (10)
- [网站分类]Google开发 (4)
- [随笔分类]旅游备注 (2)
- [网站分类]架构设计 (3)
- [网站分类]Linux (23)
- [随笔分类]重要注册 (3)
- [随笔分类]Linux+PHP (10)
- [网站分类]PHP (11)
- [网站分类]VS2010 (2)
- [网站分类]CLR (1)
- [网站分类]C++ (1)
- [网站分类]ASP.NET MVC (2)
- [网站分类]项目与团队管理 (1)
- [随笔分类]个人总结 (1)
- [随笔分类]问题集 (3)
- [网站分类]代码与软件发布 (1)
- [网站分类]Android开发 (1)
- [网站分类]MySQL (1)
- [网站分类]开源研究 (6)
- ddd (0)
- 好久没写blog了 (0)
- sqlserver (2)
最新评论
-
JamesLiuX:
博主,能组个队么,我是Freelancer新手。
Freelancer.com(原GAF – GetAFreelancer)帐户里的钱如何取出? -
yw10260609:
我认为在混淆前,最好把相关代码备份一下比较好,不然项目完成后, ...
DotFuscator 小记 -
日月葬花魂:
大哥 能 加我个QQ 交流一下嘛 ?51264722 我Q ...
web应用程序和Web网站区别 -
iaimg:
我想问下嵌入delphi写的程序总是出现窗体后面感觉有个主窗体 ...
C#自定义控件:WinForm将其它应用程序窗体嵌入自己内部 -
iaimg:
代码地址下不了啊!
C#自定义控件:WinForm将其它应用程序窗体嵌入自己内部
26个Jquery使用小技巧(jQuery tips, tricks & solutions)
- 博客分类:
- [网站分类]ASP.NET
禁止右键点击
view plaincopy to clipboardprint?
1. $(document).ready(function(){
2. $(document).bind("contextmenu",function(e){
3. return false;
4. });
5. });
2. 隐藏搜索文本框文字
view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. $("input.text1").val("Enter your search text here");
3. textFill($('input.text1'));
4. });
5.
6. function textFill(input){ //input focus text function
7. var originalvalue = input.val();
8. input.focus( function(){
9. if( $.trim(input.val()) == originalvalue ){ input.val(''); }
10. });
11. input.blur( function(){
12. if( $.trim(input.val()) == '' ){ input.val(originalvalue); }
13. });
14. }
3. 在新窗口中打开链接
view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. //Example 1: Every link will open in a new window
3. $('a[href^="http://"]').attr("target", "_blank");
4.
5. //Example 2: Links with the rel="external" attribute will only open in a new window
6. $('a[@rel$='external']').click(function(){
7. this.target = "_blank";
8. });
9. });
10. // how to use
11. <A href="http://www.opensourcehunter.com" rel=external>open link</A>
4. 检测浏览器
注: 在版本jQuery 1.4中,$.support 替换掉了$.browser 变量。
view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. // Target Firefox 2 and above
3. if ($.browser.mozilla && $.browser.version >= "1.8" ){
4. // do something
5. }
6.
7. // Target Safari
8. if( $.browser.safari ){
9. // do something
10. }
11.
12. // Target Chrome
13. if( $.browser.chrome){
14. // do something
15. }
16.
17. // Target Camino
18. if( $.browser.camino){
19. // do something
20. }
21.
22. // Target Opera
23. if( $.browser.opera){
24. // do something
25. }
26.
27. // Target IE6 and below
28. if ($.browser.msie && $.browser.version <= 6 ){
29. // do something
30. }
31.
32. // Target anything above IE6
33. if ($.browser.msie && $.browser.version > 6){
34. // do something
35. }
36. });
5. 预加载图片
view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. jQuery.preloadImages = function()
3. {
4. for(var i = 0; i").attr("src", arguments[i]);
5. }
6. };
7. // how to use
8. $.preloadImages("image1.jpg");
9. });
6. 页面样式切换
view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. $("a.Styleswitcher").click(function() {
3. //swicth the LINK REL attribute with the value in A REL attribute
4. $('link[rel=stylesheet]').attr('href' , $(this).attr('rel'));
5. });
6. // how to use
7. // place this in your header
8. <LINK href="default.css" type=text/css rel=stylesheet>
9. // the links
10. <A class=Styleswitcher href="#" rel=default.css>Default Theme</A>
11. <A class=Styleswitcher href="#" rel=red.css>Red Theme</A>
12. <A class=Styleswitcher href="#" rel=blue.css>Blue Theme</A>
13. });
7. 列高度相同
如果使用了两个CSS列,使用此种方式可以是两列的高度相同。
view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. function equalHeight(group) {
3. tallest = 0;
4. group.each(function() {
5. thisHeight = $(this).height();
6. if(thisHeight > tallest) {
7. tallest = thisHeight;
8. }
9. });
10. group.height(tallest);
11. }
12. // how to use
13. $(document).ready(function() {
14. equalHeight($(".left"));
15. equalHeight($(".right"));
16. });
17. });
8. 动态控制页面字体大小
用户可以改变页面字体大小
view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. // Reset the font size(back to default)
3. var originalFontSize = $('html').css('font-size');
4. $(".resetFont").click(function(){
5. $('html').css('font-size', originalFontSize);
6. });
7. // Increase the font size(bigger font0
8. $(".increaseFont").click(function(){
9. var currentFontSize = $('html').css('font-size');
10. var currentFontSizeNum = parseFloat(currentFontSize, 10);
11. var newFontSize = currentFontSizeNum*1.2;
12. $('html').css('font-size', newFontSize);
13. return false;
14. });
15. // Decrease the font size(smaller font)
16. $(".decreaseFont").click(function(){
17. var currentFontSize = $('html').css('font-size');
18. var currentFontSizeNum = parseFloat(currentFontSize, 10);
19. var newFontSize = currentFontSizeNum*0.8;
20. $('html').css('font-size', newFontSize);
21. return false;
22. });
23. });
9. 返回页面顶部功能
view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. $('a[href*=#]').click(function() {
3. if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
4. && location.hostname == this.hostname) {
5. var $target = $(this.hash);
6. $target = $target.length && $target
7. || $('[name=' + this.hash.slice(1) +']');
8. if ($target.length) {
9. var targetOffset = $target.offset().top;
10. $('html,body')
11. .animate({scrollTop: targetOffset}, 900);
12. return false;
13. }
14. }
15. });
16. // how to use
17. // place this where you want to scroll to
18. <A name=top></A>
19. // the link
20. <A href="#top">go to top</A>
21. });
11.获得鼠标指针XY值
view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. $().mousemove(function(e){
3. //display the x and y axis values inside the div with the id XY
4. $('#XY').html("X Axis : " + e.pageX + " | Y Axis " + e.pageY);
5. });
6. // how to use
7. <DIV id=XY></DIV>
8.
9. });
12. 验证元素是否为空
view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. if ($('#id').html()) {
3. // do something
4. }
5. });
13. 替换元素
view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. $('#id').replaceWith('
3. <DIV>I have been replaced</DIV>
4.
5. ');
6. });
14. jQuery延时加载功能
view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. window.setTimeout(function() {
3. // do something
4. }, 1000);
5. });
15. 移除单词功能
view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. var el = $('#id');
3. el.html(el.html().replace(/word/ig, ""));
4. });
16. 验证元素是否存在于Jquery对象集合中
view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. if ($('#id').length) {
3. // do something
4. }
5. });
17. 使整个DIV可点击
view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. $("div").click(function(){
3. //get the url from href attribute and launch the url
4. window.location=$(this).find("a").attr("href"); return false;
5. });
6. // how to use
7. <DIV><A href="index.html">home</A></DIV>
8.
9. });
18.ID与Class之间转换
当改变Window大小时,在ID与Class之间切换
view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. function checkWindowSize() {
3. if ( $(window).width() > 1200 ) {
4. $('body').addClass('large');
5. }
6. else {
7. $('body').removeClass('large');
8. }
9. }
10. $(window).resize(checkWindowSize);
11. });
19. 克隆对象
view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. var cloned = $('#id').clone();
3. // how to use
4. <DIV id=id></DIV>
5.
6. });
20. 使元素居屏幕中间位置
view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. jQuery.fn.center = function () {
3. this.css("position","absolute");
4. this.css("top", ( $(window).height() - this.height() ) / 2+$(window).scrollTop() + "px");
5. this.css("left", ( $(window).width() - this.width() ) / 2+$(window).scrollLeft() + "px");
6. return this;
7. }
8. $("#id").center();
9. });
21. 写自己的选择器
view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. $.extend($.expr[':'], {
3. moreThen1000px: function(a) {
4. return $(a).width() > 1000;
5. }
6. });
7. $('.box:moreThen1000px').click(function() {
8. // creating a simple js alert box
9. alert('The element that you have clicked is over 1000 pixels wide');
10. });
11. });
22. 统计元素个数
view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. $("p").size();
3. });
23. 使用自己的 Bullets
view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. $("ul").addClass("Replaced");
3. $("ul > li").prepend("‒ ");
4. // how to use
5. ul.Replaced { list-style : none; }
6. });
24. 引用Google主机上的Jquery类库
Let Google host the jQuery script for you. This can be done in 2 ways.
view plaincopy to clipboardprint?
1. //Example 1
2. <SCRIPT src="http://www.google.com/jsapi"></SCRIPT>
3. <SCRIPT type=text/javascript>
4. google.load("jquery", "1.2.6");
5. google.setOnLoadCallback(function() {
6. // do something
7. });
8. </SCRIPT><SCRIPT src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js" type=text/javascript></SCRIPT>
9.
10. // Example 2:(the best and fastest way)
11. <SCRIPT src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js" type=text/javascript></SCRIPT>
25. 禁用Jquery(动画)效果
view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. jQuery.fx.off = true;
3. });
26. 与其他Javascript类库冲突解决方案
view plaincopy to clipboardprint?
1. $(document).ready(function() {
2. var $jq = jQuery.noConflict();
3. $jq('#id').show();
4. });
发表评论
-
where T:new() 是什么意思
2014-04-18 09:26 1463where T:new() 是什么意思 经常看到方法后面 ... -
好久没写blog了
2012-05-21 18:43 2好久没写blog了 -
test
2011-03-19 09:48 818testddddddddddd -
QQ自动发日志分析
2011-03-10 18:15 1269首先列举比较重要的问 ... -
test
2011-02-23 18:03 809test -
test
2011-02-23 17:53 880test -
为啥cnblogs的数据不能导了
2011-02-23 11:03 914为啥cnblogs的数据不能导了内容 -
如何保护.net中的dll文件(防破解、反编译)
2010-07-30 00:28 1495.net是一种建立在虚拟机上执行的语言,它直接生成 MSIL ... -
提搞网站访问速度可做哪些优化
2010-08-08 15:30 1123一、 服务器优化 ... -
ASP.NET(c#)如何判断浏览器是否支持cookies
2010-07-29 09:33 1718实例代码: 下面是写cookie ... -
N点虚拟主机管理系统(For Windows2003/2008)功能及介绍
2010-04-09 11:23 2265N点虚拟主机管理系统是 ... -
使用c#+(datagrid控件)编辑xml文件
2010-04-06 09:13 1170对xml文件的记录进行删除,修改,或增加新记录。 利用了d ... -
HTTP代理模块(HTTP Proxy)
2010-04-04 10:19 3050HTTP代理模块(HTTP Proxy ... -
Error 80040154 retreiving COM Class factory
2010-03-29 09:23 22571.ask: Greetings, I have ... -
petshop4.0 详解之二(数据访问层之数据库访问设计)
2010-03-27 11:08 1073在系列一中,我从整体上分析了PetShop的架构设计,并提及了 ... -
分享十五个最佳jQuery幻灯插件和教程
2010-03-25 09:17 2012<p>在网站前端中使用jQuery库已经变得越来越 ... -
20个软件开发常用设计文档大全下载
2009-08-27 10:22 973搜集了一些软件开发的常用文档,分享给大家 总下载地址: h ... -
asp.net 在线 mp3,wma, avi
2009-09-04 13:58 9321.前台js<script type="tex ... -
sql db link string
2009-09-06 21:52 985SQL Server ODBC Standar ... -
ASP.Net2.0小技巧 保持滚动条的位置 焦点移动到某个控件 $符号轻松的使用FindControl
2009-09-11 11:05 1302您可能不知道的ASP.Net2.0 ...
相关推荐
这些技巧覆盖了JQuery在客户端脚本中的广泛使用,对于前端开发者来说,这些技巧能够提升用户体验、优化页面性能和简化交互逻辑。随着JQuery的不断发展,这些技巧也是不断更新和进化的,开发者需要及时关注和学习新的...
The CSS Anthology: 101 Essential Tips, Tricks & Hacks is a compilation of best practice solutions to the most challenging CSS problems. The third edition of this best-selling book, published in full ...
### CSS Anthology: 101 Essential Tips, Tricks & Hacks (2009) — 知识点解析 #### 一、概述 《CSS Anthology: 101 Essential Tips, Tricks & Hacks》是一本由SitePoint Pty Ltd于2009年出版的专业CSS书籍,作者...
《S7_200中文实例Tips&tricks》是一个针对西门子S7-200系列PLC(可编程逻辑控制器)的实用技巧和经验分享集合。S7-200是西门子公司推出的一款小型PLC,广泛应用于自动化控制领域,尤其在中小型制造业中,因其小巧、...
《JavaScript Anthology: 101 Essential Tips, Tricks & Hacks》是一本专注于JavaScript编程实践的书籍,旨在帮助开发者提升JavaScript技能,掌握一系列实用的技巧、窍门和黑客技术。这本书的内容涵盖了AJAX、CSS、...
S7_200中文实例Tips&tricks.zip西门子PLC编程实例程序源码下载S7_200中文实例Tips&tricks.zip西门子PLC编程实例程序源码下载S7_200中文实例Tips&tricks.zip西门子PLC编程实例程序源码下载S7_200中文实例Tips&tricks....
比如有禁止右键点击、隐藏搜索文本框文字、在新窗口中打开链接、检测浏览器、预加载图片、页面样式切换、所有列...个数、使用Google主机上的Jquery类库、禁用Jquery效果、解决Jquery类库与其他Javascript类库冲突问题...
《S7_200中文实例Tips&tricks》是一个针对西门子S7-200系列PLC编程的实用资源集合。S7-200是西门子推出的一种小型可编程逻辑控制器,广泛应用于工业自动化领域,尤其适合中小型控制系统。这个压缩包中的内容可能是由...
《S7-200使用技巧:掌握西门子小型PLC的核心技能》 S7-200系列是西门子推出的一款小型可编程逻辑控制器(PLC),广泛应用于工业自动化领域。这款控制器以其紧凑的体积、强大的功能和易用性著称。本文将深入探讨S7-...
《软件工程师-经典收藏50个jQueryMobile开发技巧集萃》文档汇集了众多关于jQuery Mobile的实用技巧,这些技巧对于软件工程师来说是构建高效、跨平台的移动网站和应用的宝贵资源。jQuery Mobile是一个强大的框架,它...
Shiny_tips_&_tricks_for_improving_your_apps_and_so_advanced-shiny
### DirectX 9 Tips and Tricks详解 #### 一、概述 《ShaderX2:Shader Programming Tips & Tricks with DirectX 9》是一本由Wolfgang F. Engel编辑的专业书籍,由Wordware Publishing出版。本书主要介绍了使用...
描述中同样提到的是“工业机器人-S7_200中文实例Tips&tricks.7z”,进一步证实了这是一份关于S7-200 PLC在工业机器人控制中的实践教程或案例集,包含了一些实用的技巧和小贴士。通常这样的资源会包括编程示例、故障...
西门子PLC例程源码S7_200中文实例Tips&tricks本资源系百度网盘分享地址
Best practice and tips & tricks to write scientific papers in LaTeX, with figures generated in Python or Matlab.zip
使用Keras的编程技巧 Keras-Tips-Tricks-and-Techniques-master.zip
《Wordware Publishing - LightWave 3D 8.1001 Tips & Tricks》是一部针对LightWave 3D 8版本的专业指南,旨在帮助用户掌握并优化这款强大的三维动画和建模软件的使用技巧。LightWave 3D是由NewTek公司开发的一款...