在我的表单中,我有一个按钮,当点击时,会附加一行字段以供用户填写。
其中一个字段使用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>"); }); });
有人能指点我吗?谢谢。
答案 0 :(得分:0)
您的PHP需要将数据写入JSON对象或Javascript变量,或者Javascript可以读取的内容。
然后在您的点击事件中,在插入HTML之前,您需要根据写入页面的数据构建您的选择html