jquery radio、checkbox 选项 内存问题

$("[checked]:not(:checked)").removeAttr("checked");



$("div[id='form_body'] textarea").each(function() {
        $(this).text($(this).val());
        // $(this).attr("readonly","readonly");
    });
   $("div[id='form_body'] select").each(function() {
        $(this).find("option:not(:selected)").removeAttr("selected");
        $(this).find("option:selected").attr("selected", "selected");
    });

    $("div[id='form_body'] :radio").each(function() {
        if ($(this).is(":checked")) {
            $(this).attr("checked", "checked");
        }
        // $(this).attr("readonly","readonly");
    });

    $("div[id='form_body'] :checkbox").each(function() {
        if ($(this).is(":checked")) {
            $(this).attr("checked", "checked");
        }
        // $(this).attr("readonly","readonly");
    });

你可能感兴趣的:(jquery,radiocheckbox)