为什么在调用函数javascript时边框不会改变?
http://jsfiddle.net/A4wxX/113/
function check_withdraw_format()
{
alert("TEsT");
document.getElementById("withrdaw").style.border = "1px solid red";
}
答案 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";
}