validate很不错的一个jQuery表单验证插件.升级到了1.9版的后,发现隐藏表单域验证全部失效,特别是在jquery.ui.tabs.min.js构造的Tabs里的验证!网上一搜,也没查到是怎么回事.最后在1.9的changelog里发现了这么一句 changelog里 * Fixed #189 - :hidden elements are now ignored by default ignore: ":hidden", ignore: ""
//---表单提交---- $("#destiation_form").submit(function(){ var from_city_value=$("#from_city").val(); if(from_city_value.indexOf('MFM')>0){ $("#to_city").attr("value",""); } var to_city_value=$("#to_ci
I came across this scenario whereby my main View uses Ajax posts to retrieve PartialViews and delivers the markup of the PartialView into my View. I use the jQuery validation framework to implement client side unobstrusive validation. When I tried to