讨论 » 创建请求
Script changing form attributes
I want that the script self remove the disabled="" part:
<input disabled="" id="btn_download" value="Download File" class="dwld_btn" type="submit">
var d=document.querySelectorAll('input'); for(var i=0;i
document.getElementById('btn_download').disabled = false;
Or like this, for one specific element.
登录以发表回复。
Script changing form attributes
I want that the script self remove the disabled="" part: