js设置按钮的灰色不可点击

document.getElementById("btnSave").setAttribute("disabled", true);//设置不可点击

document.getElementById("btnSave").style.backgroundColor  = '#555555';//设置背景色

document.getElementById("btnSave").removeAttribute("disabled");//去掉不可点击

window.parent.location.href = url;//调用父页面重新加载

 

转载于:https://www.cnblogs.com/wby-666/p/10255776.html

你可能感兴趣的:(js设置按钮的灰色不可点击)