Lets say I have an empty div:
<div id='myDiv'></div>
Is this:
$('#myDiv').html("<div id='mySecondDiv'></div>");
The same as:
var mySecondDiv=$('<div></div>');
$('myDiv').append(mySecondDiv);
|
|
Whenever you pass a string of HTML to any of jQuery's methods, this is what happens: A temporary element is created, let's call it x. x's Note that it's actually a lot more complicated than that, as jQuery does a bunch of cross-browser checks and various other optimisations. E.g. if you pass just EDIT: To see the sheer quantity of checks that jQuery performs, have a look here, here and here.
The correct technique depends heavily on the situation. If you want to create a large number of identical elements, then the last thing you want to do is create a massive loop, creating a new jQuery object on every iteration. E.g. the quickest way to create 100 divs with jQuery:
There are also issues of readability and maintenance to take into account. This:
... is a lot harder to maintain than this:
|
|||||||||||||||||
|
|
They are not the same. The first one replaces the HTML without creating another jQuery object first. The second creates an additional jQuery wrapper for the second div, then appends it to the first. One jQuery Wrapper (per example):
Two jQuery Wrappers (per example):
You have a few different use cases going on. If you want to replace the content, Only use two wrappers if you need to manipulate the added
|
||||
|
|
if by .add you mean .append, then the result is the same if #myDiv is empty. is the performance the same? dont know.
|
|||
|
|
You can get the second method to achieve the same effect by:
Luca mentioned that In some occassions though, you would opt for the second option, consider:
|
|||||||
|