Test to report a bug like this: Do not fill in a form of any content, and then click to save, this time must fill in the error will be prompted, and then select a checkbox, normally there is a corresponding text box is required, but this time and then click to save, The checkbox corresponds to a text box that does not have a required error, which means that no required:true this validation rule has been obtained to set the corresponding text box through the onchange event of the checkbox. Find the validation rule before the checkbox is selected through debug After the constant debug finally discovered is the project jQuery.metadata.js problem, metadata will judge whether has the cache data, some words directly returns the cache data, will not go to obtain the data in the HTML
The code that returns the cached data in the JQuery.metadata.js has been commented out:
var data = $.data (Elem, settings.single);
Returned cached data if it already exists
//if (data) Return data, note that the bank code guarantees that each fetch is the most current data and does not take the cached data.