这是我的js代码:
html = "";
Object.keys(obj).forEach(function(key) {
html += "<option value='" + obj[key].entity_id + "'>" + obj[key].name + "</option>";
});
$('_accountmedical_location').insert({ 'after' : html });
我想知道原型中是否有一个函数在元素中插入一些html代码,如:
$('_accountmedical_location').insert({ 'inside' : html });
我已经有了选项html代码,我只是想把它放在我的选择中。我怎样才能做到这一点 ? thx