用户选择开始日期,并且“在更改时”我想填充相应的结束日期。
这不起作用,任何想法为什么?警报看起来很好,但最后一行不起作用:
$(document).ready(function () {
$('.input-group.date').change(function() {
var $input = $(this).find('input.form-control');
alert($input.attr('id'));
alert($input.val());
var $effdateid = $input.attr('id')
var expdateid = $effdateid.replace("effective","expire")
alert(expdateid) //this is the target field id
$(expdateid).val($input.val())
})
});