討論 » 建立請求

Script changing form attributes

§
發表於:2015-10-13
編輯:2015-10-13

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">
§
發表於:2015-10-13

var d=document.querySelectorAll('input'); for(var i=0;i

Jixun.Moe管理員
§
發表於:2015-10-19
document.getElementById('btn_download').disabled = false;

Or like this, for one specific element.

發表回覆

登入以回復