原型在jQuery中等效

时间:2016-07-09 14:07:38

标签: javascript jquery prototype

jQuery中的以下原型相当于什么?

rowTag = 'li' , style = ('display', 'none') and

html = <div class="nobr">..... </div>

element = new Element(rowTag, style).insert(html);

1 个答案:

答案 0 :(得分:0)

您可以创建元素并指定如下属性:

$('<tag/>', {
    id:   'foo',
    text: 'Go to Google!'
});

然后您可以使用DOM Insertion methods

之一