码迷,mamicode.com
首页 > Web开发 > 详细

Ajax提交form时Unobtrusive validation失败

时间:2019-11-30 17:40:15      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:方向   each   str   upd   tps   思路   tor   asp   targe   

在页面加载完成时执行以下代码:

$(document).ajaxStop(function() {
	$.validator.unobtrusive.parse(‘form‘);
});

https://forums.asp.net/t/1651961.aspx?Unobtrusive+validation+not+working+on+form+loaded+by+Ajax
===============

另一個差不多的是:
$(document).ajaxSuccess(function (event, xhr, settings) {
    if (settings.mvcTargetElement) {
        $(settings.mvcTargetElement.getAttribute("data-ajax-update")).each(function () {
            $.validator.unobtrusive.parse(this);
        });
    }
});
https://btburnett.com/2011/01/mvc-3-unobtrusive-ajax-improvements.html




我试验从未成功,但这是一个思路和方向。

Ajax提交form时Unobtrusive validation失败

标签:方向   each   str   upd   tps   思路   tor   asp   targe   

原文地址:https://www.cnblogs.com/nirvanan/p/11963308.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!