调用函数javascript时为什么边框不会改变?

时间:2014-12-31 15:28:11

标签: javascript

为什么在调用函数javascript时边框不会改变?

http://jsfiddle.net/A4wxX/113/

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

2 个答案:

答案 0 :(得分:1)

首先,学习如何调试代码。

在这种情况下很简单:只需打开控制台,即可看到

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

问题是您使用

<input id="withdraw" />
document.getElementById("withrdaw")

答案 1 :(得分:0)

由于 withrdaw 撤销

不同而导致拼写错误
function check_withdraw_format() {
    alert("TEsT");
    document.getElementById("withdraw").style.border = "1px solid red";
}