我是javascript的新手,我遇到了显示日期的问题。
我想显示一个格式化为MM-DD-YYYY
的可读日期,但每当我尝试加载页面时,我总会得到一个ASP格式的日期。
有人提供了这段代码,我尝试在我的项目中使用它,但是,我仍然使用这种错误Uncaught TypeError: Cannot call method 'formatDate' of undefined
得到错误的日期格式。
这段代码出了什么问题?
$(document).ready(function () {
var date = $.datepicker.formatDate('yy-mm-dd', new Date($("#dateOfBirth").val()));
$("#dateOfBirth").val(date);
});
我正在使用C#MVC。
答案 0 :(得分:0)
可能试一试(假设你正在使用jQuery ......如果我离开了,我道歉):
// You might not need the next two lines...
// And if not, just delete them as well as the last line
jQuery.noConflict();
jQuery(function($) {
$(document).ready(function() {
$("#dateOfBirth").datepicker();
$("#dateOfBirth").datepicker("dateFormat", "yy-mm-dd");
});
});