jquery – $(”)做什么?

前端之家收集整理的这篇文章主要介绍了jquery – $(”)做什么?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在工具提示脚本中的jQuery工具中看到了这一点.什么是< div /> ?我从来没有见过这种反斜杠.可能会得到一些投票,但我必须知道.

@R_404_323@

它用于创建div元素.它的简写为< div>< / div>.

例如:

$('<div/>',{id: 'hello','class': 'new',html: 'New div'}).appendTo('#target');

将使用id创建div:hello,class:new with html new div并追加到#target.

DEMO

更多细节

它意味着“动态创建一个jQuery包装的div元素”.

When the parameter has a single tag,such as $('<div />') or
$('<a></a>'),jQuery creates the element using the native JavaScript
createElement() function.

结果它看起来像:

$(document.createElement("div"));

详情请见here

原文链接:https://www.f2er.com/jquery/180863.html

猜你在找的jQuery相关文章