仿照w3school,做了个简单的ajax。
index.html
请在下面输入框键入字母(A - Z):
建议:
showHint.php
0) { $hint=""; for ($i = 0; $i < count($a); $i++) { if (strtolower($q) == strtolower(substr($a[$i], 0, strlen($q)))) { if ($hint == "") { $hint = $a[$i]; } else { $hint = $hint. ",". $a[$i]; } } }}if ($hint == "") { $response = "找不到匹配的...";} else { $response = $hint;}echo $response;?>
本地测试要先搭建apache服务器,chrome,firefox,ie8均不支持本地 xmlhttp.open("GET", "gethint.php?q=" + str, true);请求。