0

在我的表单中,我有一个按钮,单击该按钮会附加一行要由用户填写的字段。

其中一个字段使用 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>"); }); });

谁能给我一个指针?谢谢你。

4

1 回答 1

0

您的 PHP 需要将数据写入 JSON 对象或 Javascript 变量,或者 Javascript 可以读取的东西。

然后在您的点击事件中,在插入 HTML 之前,您需要根据写入页面的数据构建您的选择 html

于 2013-04-22T13:50:28.487 回答