-2

関数を作成したい問題

function set_select_option(select_name, start_value, data, new_option) {
select_name.empty();
select_name.append(new Option(start_value.toString(), 0));
$.each(data, function () {
    select_name.append(new_option) ;
});
};

これを使いたい

set_select_option('#select1', 'name0', data1, new Option(this.name, this.id));

しかし、このエラー

Option(this.name, this.id)

直し方 ?できますか?

4

1 に答える 1