私のフォームには、クリックするとユーザーが入力するフィールドの行を追加するボタンがあります。
これらのフィールドの 1 つは 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>"); }); });
誰かが私にポインタを与えることができますか? ありがとうございました。