使用JQuery选择器实现排除某一大元素下的某一元素的核心代码是使用.not()方法,如下所示:
$("button").not("#save").attr("disabled",true);
这句代码实现的功能是:给除过id为save外的所有button添加属性disabled禁用。