我使用一个简单的jax字母,在投入领域,通过<代码>onkeyup找到记录。
问题:
记录一旦从电话中收回,将随时在屏幕上印刷,不管输入什么,还是插手在实地。
样本:
让我说,在形式领域分类的插图是red<>/code>。
页: 1
if the letter i
is added after this been returned, it still shows red.
i need it to show nothing.
如果问题由现成的国家解决,则无法解决。
<script type="text/javascript">
function showResult(str)
{
if (str.length==0)
{
document.getElementById("input1").innerHTML="";
document.getElementById("input1").style.border="0px";
return;
}
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200 && xmlhttp.responseText!= )
{
document.getElementById("input1").innerHTML=xmlhttp.responseText;
document.getElementById("input1").style.border="1px solid #A5ACB2";
}
}
xmlhttp.open("GET","getajax.php?q="+str,true);
xmlhttp.send();
}
</script>