最佳答案
如何使用 jquery 和 mvc3将日期时间(我需要它传递到第二个)传递给 c # 。这就是我所拥有的
var date = new Date();
$.ajax(
{
type: "POST",
url: "/Group/Refresh",
contentType: "application/json; charset=utf-8",
data: "{ 'MyDate': " + date.toUTCString() + " }",
success: function (result) {
//do something
},
error: function (req, status, error) {
//error
}
});
我不知道日期应该采用什么格式,以便 C # 能够理解。