这个jQuery选择器在做什么? $('<a/>',{...});
我正在通过第三方JS库调试,我注意到这个jQuery选择器语句。
我习惯于简单的$([元素])选择器,所以这是抛弃我。
$('<a/>', { id: 'specialId',
href: '#',
'class': 'button-next',
html: 'SomeText'
}).appendTo($('#specialDivId'));
回答:
它正在生成一个DOM对象。
这类似于做
$("<a id='specialId'></a>") ....
然后,您可以用它来.appendTo别的东西!
回答:
它创建了一个新的元素<a>
,设置其选项(ID,HREF等),并追加到#specialDivId
以上是 这个jQuery选择器在做什么? $('<a/>',{...}); 的全部内容, 来源链接: utcz.com/qa/259865.html