我试图将选项标签附加/前置到表单中的附加选择输入。 只需将我的表格附加到身体上就像这样:
c.append( $('<form>').attr({
'method': 'POST',
'action': ''
}).append( $('<select />').attr({
'name': 'retour'
}) ));
现在我想将Option标签附加到此表单,而不必像5次那样创建.append( $('<option>').attr() )
等。
我发现了类似的问题:
答案 0 :(得分:4)
Append接受以逗号分隔的多个元素
c.append(
$('<form>', {
method : 'POST',
action : ''
}).append(
$('<select />', {
name : 'retour'
}).append(
$('<option />', {text : 'option1'}),
$('<option />', {text : 'option2'}),
$('<option />', {text : 'option3'}),
$('<option />', {text : 'option4'}),
$('<option />', {text : 'option5'})
)
)
);