我使用此代码将输入框中输入的值传输到span:
$(function() {
$(".single-product p:nth-child(5) input").keyup(function () {
$('#birthdate').html($(this).val());
});
});
它可以工作,但是当我将它用于我为jquery datepicker(日历)制作的另一个函数时
$(function() {
$( ".single-product p:nth-child(5) input" ).datepicker();
});
在按Enter键之前,它不会将值传输到跨度。如何将其更改为自动? (一旦用户选择输入的日期(当前有效),然后选择跨度。
答案 0 :(得分:1)
尝试使用datepicker的onSelect()
事件
$( ".single-product p:nth-child(5) input" ).datepicker({
onSelect: function (dateText, inst) {
//set value to another input
}
});