我有一个ASP页面,它将使用ajax计算来自2个文本框的所有输入值。我想获得keyup的价值:
<input type="text" name="greetingScore" class="form-control" onkeyup="computeScore(this.value)">
<input type="text" name="closingScore" class="form-control" onkeyup="computeScore(this.value)">
这是我的javascript。
<script>
function computeScore(str,str2)
{
var xmlhttp;
if (str.length==0)
{
document.getElementById("pointsEarned").innerHTML="";
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)
{
document.getElementById("pointsEarned").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","computeScore.asp?a="+str"&b="+str2,true);
xmlhttp.send();
}
</script>
我想知道的是如何区分两个文本框中输入的值。