js与jquery设置disabled属性

为了防止重复提交问题。在单击了一个button后,设置为diabled属性。

例如:

那么在test方法里,在最后加一句:

document.getElementById("save").setAttribute("disabled", "disabled");   //这是JS方法;

$("#test").attr("disabled","true"); //Jquery方法

 

如果你要去掉diabled属性:

document.getElementById("save").removeAttribute("disabled");   //这是JS方法;

$("#test").attr("disabled",false); //Jquery方法

 

 

你可能感兴趣的:(js与jquery设置disabled属性)