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.
我有 globalize.js 文件,我想在某个地方将 dateformat 强制为全局级别的 dd/mm/yyyy,这样所有 jquery 验证和 datepicker 等都会获取这个 dateformat。
这可能吗?
我相信在您的布局中应用以下内容就足够了:
<script type="text/javascript"> $(function () { $.validator.methods.date = function (value, element) { return this.optional(element) || Globalize.parseDate(value, "dd/MM/yyyy") !== null; } }); </script>