标签: javascript jquery prototype
jQuery中的以下原型相当于什么?
rowTag = 'li' , style = ('display', 'none') and html = <div class="nobr">..... </div> element = new Element(rowTag, style).insert(html);
答案 0 :(得分:0)
您可以创建元素并指定如下属性:
$('<tag/>', { id: 'foo', text: 'Go to Google!' });
然后您可以使用DOM Insertion methods