“jQuery.Validate.unoBusive dynamische Inhalte” Code-Antworten

jQuery.Validate.unoBusive dynamische Inhalte

$("form").data("unobtrusiveValidation", null);
$("form").data("validator", null);
$.validator.unobtrusive.parse($("form"));	  
Cloudy Cow

jQuery.Validate.unoBusive dynamische Inhalte

$(document).ready(function () { 
    rebindvalidators();
});

function rebindvalidators() {
    var $form = $("#id-of-form");
    $form.unbind();
    $form.data("validator", null);
    $.validator.unobtrusive.parse($form);
    $form.validate($form.data("unobtrusiveValidation").options);
}
Cloudy Cow

Ähnliche Antworten wie “jQuery.Validate.unoBusive dynamische Inhalte”

Fragen ähnlich wie “jQuery.Validate.unoBusive dynamische Inhalte”

Weitere verwandte Antworten zu “jQuery.Validate.unoBusive dynamische Inhalte” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen