在此代码行中:
xmlhttp.open("GET","gethint.php?q="+str,true);
这是什么意思,gethint.php?q="+str
为什么这很重要?
在此代码行中:
xmlhttp.open("GET","gethint.php?q="+str,true);
这是什么意思,gethint.php?q="+str
为什么这很重要?
这里,
xmlhttp.open("GET","gethint.php?q="+str,true);
意思是你把参数q 传给gethint.php。当您只想在不重新加载的情况下获得结果时,这一点很重要。