我正在尝试设置 ajavascript
date
以便它可以通过提交JSON
给一个.NET
类型,但是当尝试这样做时,jQuery
将其设置date
为一个 full string
,它必须采用什么格式才能转换为一个.NET
类型?
var regDate = student.RegistrationDate.getMonth() + "/" + student.RegistrationDate.getDate() + "/" + student.RegistrationDate.getFullYear();
j("#student_registrationdate").val(regDate); // value to serialize
我MonoRail
在服务器上使用来执行与.NET
类型的绑定,除此之外我需要知道将表单隐藏字段值设置为什么,才能正确发送到.NET
代码。