I am trying to append select field on body, when any of options is selected.
但这被附加在选定的选项本身上,因为我正在附加选项。我现在不知道如何将它附加到身体上。
单击选项时,如何在正文上附加选择字段?
这是javascript代码 -
$(function() {
$(document).on('change keypress', 'select ', function (e) {
alert($('select option:selected(this)').append("<select><option>Four</option></select>"));
});
});
还有一个小提琴-附加选择框