2014-12-31 73 views

回答

0

因爲一個錯字爲withrdaw的是不一樣的退出

function check_withdraw_format() { 
    alert("TEsT"); 
    document.getElementById("withdraw").style.border = "1px solid red"; 
} 
+0

OH變化withrdaw退出^^謝謝 –

1

首先,學習如何調試代碼。

在這種情況下,它很簡單:只需打開控制檯,你看到

TypeError: document.getElementById(...) is null 

的問題是,你使用

<input id="withdraw" /> 
document.getElementById("withrdaw") 
相關問題