如果Drop down只包含一个值,我想得到Drop down的值

时间:2016-07-21 06:35:12

标签: javascript jquery

如果Drop down只包含一个值

,我想得到Drop down的值
var select1 = document.getElementById("imgrp");
select1.options.length = 0;
var select = document.getElementById("irigmdtype");
var option = document.createElement('option');
option.text = option.value = trsetdata.d.results[0].Mdtyp;
select.add(option);

0 个答案:

没有答案