开发者

How to create an empty jQuery result [duplicate]

开发者 https://www.devze.com 2022-12-15 16:27 出处:网络
This question already has answers here: Getting an empty JQuery object (4 answers) Closed 5 years ago. Edit: As of jQuery 1.4, using $() will work as described below.
This question already has answers here: Getting an empty JQuery object (4 answers) Closed 5 years ago.

Edit: As of jQuery 1.4, using $() will work as described below.


I need to loop through an array and create a number of elements 开发者_运维百科which I want to have in a single jQuery result object.

for (var i = 0; i < 10; ++i) {
    $myJQueryObj = $myJQueryObj.add($("<span>blahblah</span>"));
}

The problem with this, however, is that you need a jQuery object to begin with, and you obviously want to start it empty. In the above example, how should I initialise $myJQueryObj ?

The following examples do not work, as they all select the document object:

$('')
$()
$(null)
$(false)

These do work... but...

$('#nonExistantElement')  // yuck
$().slice(0,0)            // surely there's a nicer way?

Is there a better way?


Yep. Try $([]). The reason $() doesn't work is because that jQuery expects a context, and without any supplied, will default to document as the context. Many things depend on this assumption being true, so changing $() to mean "give me the empty set" would be problematic at best.


Ah, I figured it out just after I wrote the question. Here's what I found, in case anyone else is interested:

$([])
0

精彩评论

暂无评论...
验证码 换一张
取 消