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.
我无法执行日期比较操作,因为它是作为字符串检索的。我怎样才能做到这一点。我尝试使用以下语法,但没有奏效。
DateUtils.convertFormat(emp_date_start,"MM/dd/yyyy","yyyy-MM-dd");
首先将您的字符串转换为日期格式,然后进行比较:-
var dateCon=new Date(emp_date_start); //Now Compare :- if(dateCon > new_date)
JSON.stringify() 并不是从数据库中获取它的全部要求。
只是我用过
var new_date = consultantInfo['0']['date_start'];
从我用来从数据库中检索的 ajax 对象中获取。