gpt4 book ai didi

javascript - 基于 combodate.js 的 ajax 响应的 setValue

转载 作者:行者123 更新时间:2023-11-30 00:11:47 24 4
gpt4 key购买 nike

我正在使用 combodate jQuery 库。从 AJAX 获取数据时如何设置字段中的值?在文档中没有这方面的例子。我尝试了 $(selector).val('var from ajax') 但它不起作用。这是我的代码:

<div class="form-group">
<label class="control-label col-md-3">Selesai</label>
<div class="col-md-9">
<div class="form-inline">
<div class="form-group">
<input name="tanggal_selesai" class="form-control combodate " type="text">
<span class="help-block"></span>
</div>
</div>
</div>
</div>
$('.combodate').combodate({
format: 'YYYY-MM-DD HH:mm',
template: 'DD / MM / YYYY HH : mm',
value: null,
minYear: 2015,
maxYear: new Date().getFullYear(),
yearDescending: true,
minuteStep: 1,
secondStep: 1,
firstItem: 'empty',
errorClass: null,
customClass: 'form-control',
roundTime: true,
smartDays: false
});

$.ajax({
url: "<?php echo site_url('members/it/request/ajax_edit/') ?>/" + id,
type: "GET",
dataType: "JSON",
success: function (response) {
$('[name="id"]').val(response.ID_REQUEST);
$('[name="nama"]').val(response.ID_KARYAWAN);
$('[name="tanggal_persetujuan"]').val(response.TANGGAL_PERSETUJUAN);
$('[name="tanggal_terima"]').val(response.TANGGAL_TERIMA);
$('[name="perkiraan_selesai"]').val(response.PERKIRAAN_SELESAI);
$('[name="tanggal_selesai"]').val(response.TANGGAL_SELESAI);
$('[name="pelaksana"]').val(response.PELAKSANA);
$('[name="keluhan"]').val(response.KELUHAN);
$('[name="catatan"]').val(response.CATATAN);
$('#modal_form').modal('show'); // show bootstrap modal when complete loaded
$('.modal-title').text('Edit Customer Data'); // Set title to Bootstrap modal title
},
error: function (jqXHR, textStatus, errorThrown) {
alert('Error get data from ajax');
}
});

最佳答案

根据文档,您可以使用 setValue() 方法:

Sets new value. Value can be javascript Date() object or string in options.format.

$('[name="tanggal_selesai"]').combodate('setValue', response.TANGGAL_SELESAI).

关于javascript - 基于 combodate.js 的 ajax 响应的 setValue,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36172680/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com