在jQuery中将对象传递给.attr()

时间:2012-06-02 13:34:50

标签: javascript jquery object

我正在尝试将对象文字传递给jQuery中的.attr()方法,以自动创建DOM元素。问题是当有多个属性设置失败时。

var atts = {'type':'text', 'id':'#inputBox'};
createElem('<input></input>', '#divToAppendTo', atts);


function createElem(typeOfField, fldToAppendTo, atts){
    // this works when there is only one attribute to set, but fails when there is more than 1
    jQuery(typeOfField, atts).appendTo(fldToAppendTo);
}

有什么想法吗?

2 个答案:

答案 0 :(得分:1)

删除你的代码并改为使用它:

$( "<input>", {type:'text', id:'inputBox'} ).appendTo("#divAppendTo")

http://jsfiddle.net/j8cXF/

请注意,对于jQuery构造函数,以下所有内容都是等效的,并触发document.createElement优化路径:

"<input></input>"
"<input/></input>"
"<input/>"
"<input>"
 // Plus infinite different combinations of whitespace

答案 1 :(得分:0)

你在线程标题中提到了attr()方法,但没有使用它

尝试:

 function createElem(typeOfField, fldToAppendTo, atts){
     // this works when there is only one attribute to set, but fails when there is more than 1
     jQuery(typeOfField).attr( atts).appendTo(fldToAppendTo);
}