私はこのコードを使用しています:
var tempObj = {
"noselected" : "",
"option1": "item1",
"option2": "item2",
"option3": "item3"
};
$.each(tempObj, function (val, text) {
$(this).append($('<option />', {
value: val,
text: text
}));
});
しかし、そのコードが実行されると、次のエラーが発生します。
TypeError: n.createDocumentFragment is not a function
[Break On This Error]
...eturn t?u.length:u?nt.error(e):L(e,a).slice(0)}function at(e,t,r){var i=t.dir,s=...
そして、最初の要素だけが追加されません。