如果我点击错误功能,如何更改文本框颜色?我尝试以下代码,但它不起作用只会显示错误消息。
<Script>
function fnName(ID)
{
var flag = true;
if(document.mainform.NAME.value == "")
{
error_function("Please enter the Name.",ID);
flag = false;
}
else
{
release_function(ID)
flag = true;
}
return flag;
}
function error_function(message,IDs)
{
var ID = '"' + IDs + '"';
document.getElementById("proposererrMsg").innerHTML = message;
document.getElementById("proposererrMsg").style.display = "inline";
document.getElementById(ID).style.background = "#DDDDDD"; //this line not working
document.getElementById(ID).style.border = "thin solid red"; // this line not working
}
</script>
<label id="proposererrMsg" class="errMsg"></label>
<input type="text" name="NAME" id="NAME" value="<%=NAME%>" onblur="fnName(this.id);" />
答案 0 :(得分:2)
您使用的ID
有不必要的引号,因此您尝试引用具有不存在ID的元素,只需直接使用IDs
参数:
document.getElementById(IDs).style.background = "#DDDDDD";
答案 1 :(得分:-1)
<script>
function fnName(id){
document.getElementById(id).style.backgroundColor = "red";
}
</script>
&#13;
<input type="text" name="NAME" id="NAME" value="" onblur="fnName(this.id);" /
&#13;