前端之家收集整理的这篇文章主要介绍了
在追加到DOM之前,jQuery使元素变量,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
试图在这里提高效率.在将元素附加到DOM之前,如何将元素存储为变量?看起来创建它是一种浪费,追加它,然后再找到它来制作一个变量.
我的方法如下. OBV它将字符串保存为变量,而不是对象,但是你明白了.
对我来说有什么魔力,还是我必须做两次旅行?
var $rGallery = '<section id="rGallery" />';
$bin.before($rGallery);
console.log($rGallery);
.before()
和
.append()
可以将jQuery对象作为参数.您只需创建新对象,将其存储在变量中,然后将其传递给.before()或.append().
快速举例:
< div id =“bin”> < / DIV>
var newElement;
$(document).ready(function() {
newElement = $("<button>New button</button>");
$("#bin").append(newElement);
alert(newElement.text());
});
原文链接:https://www.f2er.com/html/225867.html