我有这片HTML,我有5电台选择.根据电台选择结束日期应更新custom_41字段.如果我选择12个月电台的日期字段应更新到12个月从今天起,同样的所有24个月等有人可以帮助请?谢谢
$('#CIVICRM_QFID_1_custom_39').click(function() {
if ($(this).is(':checked')) {
$('#CIVICRM_QFID_1_custom_39').prop('checked', true).trigger('click');
var now = new Date();
var day = ("0" + now.getDate()).slice(-2);
var month = ("0" + (now.getMonth() + 1)).slice(-2);
var today = now.getFullYear()+"-"+(month)+"-"+(day) ;
$('#custom_41').val(today);
}
})
个字符
1条答案
按热度按时间cygmwpex1#
我改变了你的html代码,输入的值有一个月的值,使它更清晰。你只需要一个输入组的OnClick事件。
字符串