我正在尝试将对象文字传递给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);
}
有什么想法吗?
答案 0 :(得分:1)
删除你的代码并改为使用它:
$( "<input>", {type:'text', id:'inputBox'} ).appendTo("#divAppendTo")
请注意,对于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);
}