76Byte让你的JQuery更快

原文链接:http://james.padolsey.com/javascript/76-bytes-for-faster-jquery/

 

When jQuery fires a callback function, whether it is an event handler, an each iterator, or a filter function, it will normally give you a DOM element as the function’s context, accessible via the this keyword. It’s common practice to subsequently wrap this in jQuery(...) resulting in a newly constructed jQuery instance.
-----------------------------------------
当jQuery触发一个回调函数时,无论这个函数是一个事件句柄,或者是一个each迭代,再或者是一个过滤器函数,一般情况下它都会把一个Dom元素对象作为函数的上下文,并通过this关键字来获取到它。随后更普遍的做法就是用jQuery(...)来包装this以获得一个jQuery结构的实例。
-----------------------------------------
This is no fault of jQuery’s but this practice of redundant “wrapping” generally sucks.

-----------------------------------------
这种做法没有错,但是这种“包装”的做法通常显得比较多余而且差劲
-----------------------------------------
I “tweeted” a while ago, complaining of this:

Constructing a new jq obj on each iteration just to access some text seems wrong. jQuery(‘a’).map(function(){ return $(this).text(); });

-----------------------------------------------

之前我在我的推上曾经抱怨过:

        在一个each迭代起中构造一个jq对象,确仅仅是为了获得一些文本值,这种做法像是错误的。

------------------------------------------------      

1 jQuery(‘a’).map(function(){ return $(this).text(); });

------------------------------------------------
Paul Irish suggested that I use jQuery.text instead of jQuery.fn.text, meaning that I wouldn’t have to bother with constructing a new jQuery object every single time my function was called. This was a good suggestion but unfortunately not all of jQuery’s methods have corresponding single-node functions, and it would mean not being able to chain methods.
------------------------------------------------
Paul Irish 建议我使用jQuery.text()来代替jQuery.fn.text() ,这意味着我不必每次在函数调用时都去构造一个新的jQuery 对象。这个建议不错但是并非所有的jQuery方法都符合单节点函数(single-node functions),
而且这意味着将不能够使用链式方法(chain methods)。
------------------------------------------------
This is a growing problem, and is only worsened by developers’ insistence on constructing multiple jQuery objects with the same  element! -

 1 jQuery('a').click(function(){
 2  
 3     if (jQuery(this).attr('href') === 'blah') {
 4         jQuery(this).next('.whatever').slideToggle();
 5     }
 6  
 7     jQuery(this).fadeTo('slow', 0.4);
 8  
 9     return false;
10  
11 });

------------------------------------------
This的问题越来越突出,而那些坚持使用同一个元素构造多个jQuery object的开发者显得更糟糕。

 1 jQuery('a').click(function(){
 2  
 3     if (jQuery(this).attr('href') === 'blah') {
 4         jQuery(this).next('.whatever').slideToggle();
 5     }
 6  
 7     jQuery(this).fadeTo('slow', 0.4);
 8  
 9     return false;
10  
11 });

------------------------------------------
Eew! Not only are there multiple pointless constructors, but Mr. Uber Cool jQuery Developer isn’t accustomed to the DOM, so has  absolutely no idea that, in most situations, this.href would suffice for getting the href property value.

This kind of misuse has been discussed in step #3 here: http://encosia.com/2010/03/30/5-steps-toward-jquery-mastery/.

---------------------------------------------------------

Eew! 不仅仅是有多个无用的构造器,而且Mr. Uber Cool jQuery Developer也不习惯dom,在毫无办法时,大多数情况下,this.href就能够满足我们获取元素的href属性值。This的滥用用法在这里被讨论过: http://encosia.com/2010/03/30/5-steps-toward-jquery-mastery/
---------------------------------------------------------
The real problem remains that there are three jQuery objects being constructed, — I feel that it is a library’s obligation to protect  against misuse like this. Even if you’re only constructing one jQuery object in a callback it’s still somewhat pointless, in that you’re only doing so to call a couple of methods…
-----------------------------------------------------------
实际情况是我们仍旧构造了三个jq对象,我感觉防止像误用this这是js库的责任,即便如此,如果你在回调中仅仅只构造了一个jq对象仍旧有点无用,因为你只是想调用一组方法而已。
-----------------------------------------------------------
In light of my concerns I thought it would make sense to experiment with some ways to alleviate this troublesome situation. In the end, I landed on something so dead-simple that I feel silly even shining a spotlight on it:
-----------------------------
从我的观点来看,我认为通过采用一些方法减少这种麻烦是可以的,最后 ,关于这点我贴上一些简单至极却非常有效的代码
-----------------------------

jQuery.single=function(a){return function(b){a[0]=b;return a}}(jQuery([1]));

76 characters. Here’s the readable version:

-----------------------------
76字节,这个是通读版本
-----------------------------

 1 jQuery.single = (function(o){
 2  
 3     var collection = jQuery([1]); // 创建了一个jquery对象,并让他的dom collection的length === 1
 4  
 5     return function(element) {
 6  
 7         // Give collection the element:
 8         collection[0] = element; //替换collection的第一个元素
 9  
10         // Return the collection:
11         return collection; //返回替换后的jquery对象
12  
13     };
14  
15 }());

A single jQuery object is being created and is then used for every single call to jQuery.single — so only one jQuery object is ever being created. If you think about it, we tend to wrap elements in jQuery(...) (i.e. in a jQuery instance) so that we can have access to jQuery’s methods. Very rarely do we mutate the object itself — even when you call parent() or children(), the jQuery object  itself isn’t being changed — a new object is being returned. It’s this non-mutability which makes this solution viable.

--------------------------------------

使用jQuery.single()就可以保证只有一个jquery对象被创建。
如果仔细想想,我们趋向于用jQuery()包装元素以便我们可以使用jq对象的方法。
很罕见的我们改变了对象本身,即便当你调用parent()或者children()时,
jq对象本身也不会被改变,因为已经返回了一个新的对象。 这是this的不变性让这个方案可行。

--------------------------------------
Obviously, you can’t use it in exactly the same was as jQuery(); jQuery.single will only work when you pass a single DOM element. Here’s an example of its usage:

很明显,这样不能够和jQuery()一模一样;jQuery.single只用在你传递一个dom元素的情况下,
以下是用法的列子:
-------------------------------------

1 jQuery('a').click(function(){
2  
3     var html = jQuery.single(this).next().html(); // Method chaining works!
4  
5     alert(html);
6  
7     // etc. etc.
8  
9 });

Also, you can’t cache it and save it for later as you normally would… well, actually, you can — but the object will change when you next call jQuery.single, so be careful! And please note that this is only meant to be used in situations where you have a DOM element that requires immediate wrapping.

事实上你可以像平常一样缓存和保存它,但是这个对象当你再次调用jQuerysingle之后就会改变,所以要小心使用。
请注意:这个仅仅用于有个dom元素需要临时打包一下。

You might be thinking that we could do away with this trickery by simply remembering to “cache” our jQuery objects, like so (using the example from before):

你也许会认为我们也可以用简单的对象把this储存起来,就想下边这样:

jQuery('a').click(function(){var me = jQuery(this);if (me.attr('href') === 'blah') {me.next('.whatever').slideToggle();}me.fadeTo('slow', 0.4);return false;});

This is a good practice, but is still not quite as speedy as jQuery.single. I absolutely recommend making up your own mind by carrying out your own tests, but having tested jQuery.single() myself I can tell you that it performs better.

这样的做法不错,但是仍旧没有jQuery.single快。我更推荐你去测试一下,但是我可以告诉你在我测试jQuery.single()之后,它表现的更好一些

You can make it even faster by assigning jQuery.single to a (closely-scoped) variable:

你可以为jQuery.single分配一个变量来让它更快

var $_ = jQuery.single;
// Use $_(this) ...

 

这个是在Javascript Design Pattern 徐涛翻译版本中推荐的一篇文章,看了一下 ,个人英语也一般,有些地方不会翻,大体意思上估计差不多了,

第一次发文,有什么地方不好的请见谅。

转载于:https://www.cnblogs.com/netlaw/p/3303567.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/575775.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

价差 量差

这两个概念属于成本控制的范畴 成本控制有广义和狭义之分; 广义:生产经营各个环节和各个方面全过程的限制 狭义:生产阶段产品成本控制 标准成本就是通过一些方法制定的在有效的经营条件下应该实现的成本,根据产品的耗费标准和耗费…

java response 输出流_java-springmvc+filter 替换输出流、response、响应内容

java-springmvcfilter 替换输出流、response、响应内容一、问题1.描述:在使用 filter 替换、修改 response 输出内容时常见的错误如下异常提示getWriter() has already been called for this responsegetOutputStream() has already been called for this response2…

c# 关于WebBrowser的模拟提交InvokeMember方法是什么意思!

一开始接触InvokeMember方法我以为他就是向页面插入javascript脚本!然后我想找系统帮我插入的这个脚本,不过找不到!,因为我不理解模拟这个词!哈哈 其实呢,不是这样子的! InvokeMember("cli…

java继续_Java中消除实现继续和面向接口编程

在匆忙之际理清消除实现继续和面向接口编程这样两个大题目可不是一件轻易的事情,尤其考虑到自身的熟悉水平。坦白的说,这又是一篇“炒冷饭”的文章,但这“冷饭”又确实不好炒。因此,在阅读了这篇文章之后,你可要批判地…

《转》VC++多线程编程

原地址:http://www.cnblogs.com/wxfasdic/archive/2010/09/23/1833522.html留个纪念,不错的总结。十个例子清晰列举啦多线程编程的奥妙。 VC中多线程使用比较广泛而且实用,在网上看到的教程.感觉写的挺好. 一、问题的提出编写一个耗时的单线程程序&#…

array函数参数 scala_scala – 在Spark SQL中将数组作为UDF参数传递

很可能不是最漂亮的解决方案,但你可以尝试这样的事情:def getCategory(categories: Array[String]) {udf((input:String) > categories(input.toInt))}df.withColumn("newCategory", getCategory(myArray)(col("myInput")))您还可以尝试一系…

Java数据类型BooleanDemo

转载于:https://www.cnblogs.com/suncoolcat/p/3320306.html

beetle.java 分析_Beetl模板引擎入门教程

最近项目中有个邮件发送的需求,不过要求发送的HTML格式的邮件。由于Beetl对java语言的良好支持和很好的性能,我们决定使用Beetl作为我们的模板引擎。Beetl官网已经有了很详细的教程,所以本篇侧重于实战应用,适合需要不懂beetl或其…

WebScoket 规范 + WebSocket 协议

WebSocket握手协议 1、客户端握手请求(注意:键值之间有一个空格,行间有换行符号0x13x10或者说\r\n) GET /WebSocket/LiveVideo HTTP/1.1 Upgrade: WebSocket Connection: Upgrade Host: localhost:8080 (客户端请求主机) Origin:…

heap python_数据结构-堆(Heap) Python实现

堆(Heap)可以看成近似完全二叉树的数组,树中每个节点对应数组中一个元素。除了最底层之外,该树是完全充满的,最底层是从左到右填充的。堆包括最大堆和最小堆:最大堆的每一个节点(除了根结点)的值不大于其父节点;最小堆…

多个 App 间启动

http://developer.nokia.com/: URI associations for Windows Phone http://msdn.microsoft.com/: Auto-launching apps using file and URI associations for Windows Phone 8 代码示例转载于:https://www.cnblogs.com/sirkevin/p/3325035.html

im4java 文档_im4java学习---阅读documentation文档

Utilities----im提供的一些工具类①、读取图片文件信息---Info类我们之前的做法:op.format("width:%w,height:%h,path:%d%f,size:%b%[EXIF:DateTimeOriginal]");IdentifyCmd identifyCmd new IdentifyCmd(useGM);使用工具类Info:Info imageIn…

函数体中定义的结构体和类型

源代码&#xff1a; 1 #include <stdio.h>2 struct smonth // point 13 {4 int a;5 int b;6 };7 8 int func1()9 { 10 struct smonth{ 11 int a; 12 int b; 13 }; 14 15 ty…

java listview用法_Java ListView.setMultiChoiceModeListener方法代码示例

import android.widget.ListView; //导入方法依赖的package包/类Overridepublic void onActivityCreated(Nullable Bundle savedInstanceState) {super.onActivityCreated(savedInstanceState);lAdapter new LabelAdapter(getActivity(), null, 0);setListAdapter(lAdapter);g…

预编译指令与宏定义

#if #elif [defined(), !defined()] #else #ifdef #ifndef #endif // 条件编译 /* 头文件防止多次被包含 */ #ifndef ZLIB_H #define ZLIB_H#endif /* ZLIB_H *//* 用C方式来修饰函数与变量 */ #ifdef __cplusplus extern "C" { #endif int add(int a, …

java mock server_java – 使用MockRestServiceServer模拟REST调用

我正在尝试编写一个JUnit测试用例,用于测试辅助类中的方法.该方法使用REST调用外部应用程序,这是我试图在JUnit测试中模拟的调用.辅助方法使用Spring的RestTemplate进行REST调用.在我的测试中,我创建了一个模拟REST服务器并模拟REST模板并将它们实例化为&#xff1a;Beforepubl…

BZOJ 2597 剪刀石头布(最小费用最大流)(WC2007)

Description 在一些一对一游戏的比赛&#xff08;如下棋、乒乓球和羽毛球的单打&#xff09;中&#xff0c;我们经常会遇到A胜过B&#xff0c;B胜过C而C又胜过A的有趣情况&#xff0c;不妨形象的称之为剪刀石头布情况。有的时候&#xff0c;无聊的人们会津津乐道于统计有多少这…

java swt最小化到托盘_SWT 中实现最小化到托盘图标,并只能通过托盘的弹出菜单关闭程序...

package com.unmi;import org.eclipse.swt.*;import org.eclipse.swt.events.*;import org.eclipse.swt.graphics.*;import org.eclipse.swt.widgets.*;/*** SWT 3.0 开始引入了 Tray&#xff0c;可以在系统栏放置你的程序图标了* 本程序实现的功能有四&#xff1a;* 1. 点击窗…

HDU 1476 Sudoku Killer

Sudoku Killer Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 3367 Accepted Submission(s): 1063 Problem Description自从2006年3月10日至11日的首届数独世界锦标赛以后&#xff0c;数独这项游戏越来越受到…

java .net 互通redis_C# servicestack.redis 互通 java jedis

本文是基于jedis的一致性环哈希来修改的&#xff0c;.net选的是servicestack.redis组件来修改无奈两个组件都有各自的一致性环哈希算法&#xff0c;不兼容&#xff0c;那就选一个作为标准&#xff0c;修改另一个咯。本文选择jedis的一致性环哈希作为标准&#xff0c;进而修改.n…