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.
如何计算表格中日期之间的差异?日期(日、月、年)位于 3 个不同的下拉框中。那么是否有可能获得我们在选项标签中定义的选定下拉列表的值?
你可以做:
var dateA = new Date($("#yearA").val(), $("#monthA").val(), $("#dayA").val()); var dateB = new Date($("#yearB").val(), $("#monthB").val(), $("#dayB").val()); var diff = Math.abs(dateA - dateB);
这将为您提供两个日期之间的差异(以毫秒为单位)。