我在选择/列表控件中填充了一个时间字符串,例如 05:40 我想在其中添加 20 分钟并在每次列表值更改 jquery 或 javascript 时填充到文本框中
$(document).ready(function() {
$("#starttimeList").change(function() {
var selectVal = $('#starttimeList').val();
////// HERE I WANT MY CODE AS selectVal is getting value of select control e.g. 05:40 and entTime is my textbox where I want the time added with 20 minutes.
$("#endTime").val(selectVal);
});
});