I know how to copy an input field to something else. No prob. How do I copy part (ie. the month of a date field) to another field.
我知道如何将输入字段复制到其他内容。没问题。如何将部分(即日期字段的月份)复制到另一个字段。
I want to take a field that is a date range (ie. 7-13-09 to 7-15-09) and copy it to two input fields (ie. the start date and end date)
我想取一个日期范围(即7-13-09到7-15-09)的字段并将其复制到两个输入字段(即开始日期和结束日期)
1 个解决方案
#1
1
$("#startDate, #endDate").each( function( i ) {
$(this).val( $("#dateRange").val().split(" to ")[ i ] )
})
#1
1
$("#startDate, #endDate").each( function( i ) {
$(this).val( $("#dateRange").val().split(" to ")[ i ] )
})