需要附加使用JQuery选择

时间:2016-10-20 13:35:26

标签: javascript jquery html ajax html-select

我需要使用jQuery追加HTML选择选项。我有一段代码,当单击下拉时,它通过AJAX获取子函数。完成后,我还需要添加另一个值为99的选项标签和其他子功能的文本。我的代码:

$.ajax({
    type: "POST",
    data: {function_id: function_id},
    url: '<?php echo WEB_URL; ?>includes/ajax/target_audience_sub_functions.php',
    dataType: 'json',
    success: function(json) {
        var $el = $("#target_audience_sub_function");
        $el.empty(); // remove old options
        $el.append($("<option></option>").attr("value", '').text('Please Select'));
        $.each(json, function(value, key) {
            $el.append($("<option></option>").attr("value", value).text(key));
        });
        $el.append($("<option></option>").attr("value", '99').text('Other sub function'));
    }
});

$el.append是我尝试用来添加其他选项标记的代码,但它不起作用。我只从AJAX那里得到了那些。顺便说一句,第一个附加也不起作用。

HTML

<div class="form-group">
    <label for="target_audience_sub_function">Sub-Function</label>
                  <select data-selectedSubFunction="<?php echo (isset($audience)) ? $audience['target_audience_sub_function'] : ''; ?>" class="form-control light_grey_bg ta_sub_function" id="target_audience_sub_function" name="target_audience_sub_function[]">
                      <option value="">-- Choose sub function --</option>
                      <?php $get_functions = $db->get_all('sub_functions');
                        foreach ($get_functions as $function) { ?>
                            <option value="<?php echo $function['sub_function_id']; ?>" <?php echo isset($audience) ? $audience['target_audience_sub_function'] == $function['sub_function_id'] ? "selected='selected'" : "" : ''; ?> ><?php echo $function['sub_function_name']; ?></option>
                       <?php } ?>
                  </select>
              </div>

1 个答案:

答案 0 :(得分:2)

您的代码应该可以运行,我只是尝试了它,并且您可以根据需要填充选择。

&#13;
&#13;
var json = {
  0: 'Hello',
  1: 'Bobby'
};
$(function() {
  var $el = $("#target_audience_sub_function");
  $el.click(function() {
    $el.empty(); // remove old options
    $el.append($("<option></option>").attr("value", '').text('Please Select'));
    $.each(json, function(value, key) {
      $el.append($("<option></option>").attr("value", value).text(key));
    });
    $el.append($("<option></option>").attr("value", '99').text('Other sub function'));
  })
});
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<select id="target_audience_sub_function"></select>
&#13;
&#13;
&#13;

也许永远不会执行成功回调,你看到的选项是PHP打印的那个?