Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道如何将输入字段复制到其他内容。没问题。如何将部分(即日期字段的月份)复制到另一个字段。
我想获取一个日期范围的字段(即 7-13-09 到 7-15-09)并将其复制到两个输入字段(即开始日期和结束日期)
$("#startDate, #endDate").each( function( i ) { $(this).val( $("#dateRange").val().split(" to ")[ i ] ) })