首页 > 代码库 > MVC提交时验证

MVC提交时验证

第一种

@using (Html.BeginForm("ProdPromotionEdit", "Product", FormMethod.Post, new { onsubmit = "return check()" }))

第二种

<input onsubmit="return check() " type="submit">

第三种jquery

$("#xxxform").submit(function() { return true or false });