我正在从 MySQL 中检索一些数据并将其写入某些选择标签中,然后我检索每个选定的选项值并将其显示在 DIV 中,这是 javascript:
function main() {
$("select").change(function () {
var str = "";
$("select option:selected").each(function () {
str += $(this).text() + " ";
});
$("div#one").text(str);
})
.trigger('change');
}
所以,我希望每个检索到的值都写在单独的输入中:
First value: <input type="text" id="test" />
Second value: <input type="text" id="test2" />
Third value: <input type="text" id="test3" />
我怎样才能做到这一点?非常感谢!