處理所包含的所有子元素

1 篇文章 / 0 new
author
處理所包含的所有子元素
$.fn.allDisable = function () {
    /// <summary>
    /// 所有元素disable
    /// 使用 $('#xxx).allDisable();
    /// </summary>
    /// <returns type="jQuery" />
    return $(this).find("*").each(function () {
        $(this).attr("disabled", "disabled");
    });
}
$.fn.allEnable = function () {
    /// <summary>
    /// 所有元素enable
    /// 使用 $('#xxx).allEnable();
    /// </summary>
    /// <returns type="jQuery" />
    return $(this).find("*").each(function () {
        $(this).removeAttr("disabled");
    });
}
Free Web Hosting