在我的表单中,我有一个按钮,单击该按钮会附加一行要由用户填写的字段。
其中一个字段使用 foreach 循环来获取选择组选项,但我不确定如何将其输出到 .append() 调用中。
$(function() { $("button#add_billable").click(function(){ $("#billables").append("
<div class='row'>
<div class='large-5 columns'>
<label for='invoice_line'>Invoice Line</label><select name='invoice_billable[]'>
<?php foreach ($pages->find('template=billable') as $billable) { ?>
<option value='<?php echo $billable->id; ?>'>
<?php echo $billable->title; ?>
</option><?php } ?>
</select>
</div>
<div class='large-5 columns'>
<label for='line_value'>Value</label><input name='line_value[]' type='text' value='' />
</div>
<div class='large-1 columns'>
<button class='delete tiny secondary'>-</button>
</div>
</div>"); }); });
谁能给我一个指针?谢谢你。