如何手动更改<option>选择并包含在POST请求中?

时间:2017-08-30 00:36:03

标签: javascript jquery html

目前我手动选择class .fare的值:

options_fare = '<option value='Z'>Select a fare</option><option value='All fare'>All fare</option>'

$contextualDiv.children('.fare').html(options_fare);
$contextualDiv.find('.fare option:eq(1)').attr('selected', 'selected').trigger('change');
$contextualDiv.children('.fare').attr('disabled', true);

然而,当我尝试通过AJAX调用发布结果时。票价的价值是[]。我错过了什么?

0 个答案:

没有答案