'如果长度 q>0,则从数组中查找所有提示
if len(q)>0 then
hint=""
for i=1 to 30
if q=ucase(mid(a(i),1,len(q))) then
if hint="" then
hint=a(i)
else
hint=hint & " , " & a(i)
end if
end if
next
end if
'如果未找到提示,则输出 "no suggestion"
'or output the correct values
if hint="" then
response.write("no suggestion")
else
response.write(hint)
end if
%>
源代码解释:
如果 JavaScript 发送了任何文本(即 strlen($q) 大于 0),则会发生:
查找匹配来自 JavaScript 的字符的姓名
如果未找到匹配,则将响应字符串设置为 "no suggestion"
如果找到一个或多个匹配姓名,则用所有姓名设置响应字符串
把响应发送到占位符 "txtHint"
AJAX 简介
AJAX 数据库
VUE
ASP 参考手册
ASP 实例
ASP 测验
W3School 简体中文版提供的内容仅用于培训和测试,不保证内容的正确性。通过使用本站内容随之而来的风