jquery button 按下之後 另一個button disabled 解除

 

之後點了第一個button 第二個就會可以work了

<button    onclick="UnlockAnotherButton()">   </button>

<button  id="buttonIdYouWantToUnlock" disabled=disabled>   </button>

<script>function UnlockAnotherButton() {
                    $("#buttonIdYouWantToUnlock").removeAttr('disabled')//或是打 $("#buttonIdYouWantToUnlock").attr('disabled',false)
                 }</script>

之後點了第一個button 第二個就會可以work了

歡迎高手低手來看看 指教指教 切磋切磋 教學香腸