关于清空文本框内容
在checkone函数中,如果
var j=document.getElementById("wb").value;
if(j<1||j>6){
document.getElementById("wb").value="";
alert("请输入1-6数值");
}
是可以清除文本框内容的,但为什么直接写成 j=""就没反应呢?
在checkone函数中,如果
var j=document.getElementById("wb").value;
if(j<1||j>6){
document.getElementById("wb").value="";
alert("请输入1-6数值");
}
是可以清除文本框内容的,但为什么直接写成 j=""就没反应呢?
2016-02-05
举报