我正在动态创建一个元素,我将如何给它一个 id?
_addQuestionElement : function() {
var el = new Element('div');
el.addClass('dg-question-label');
el.set('html', this._getCurrentQuestion().label);
$(this.html.el).adopt(el);
},
我正在使用 moo 工具和 jquery。
非常感谢