ajax提交等待问题 - .NET技术 / ASP.NET
我做了个简单的注册时,自动查找用户名是否可用的例子,实现了。但是我现在想当正在查找数据库时,显示一张正在等待的图片,这个怎么实现呢?谢谢。
我的一些代码
function checkUserNameResult()
{
if(xmlHttp.readyState==4)
{
if(xmlHttp.status==200)
{
if(xmlHttp.responseText=="true")
{
document.getElementById("imgflag").src="false.GIF";
}
else
{
document.getElementById("imgflag").src="true.GIF";
}
}
}
}
function check_user(id) {
if (id == "")
return;
document.getElementById("userid_msg").innerHTML = "<img src='images/loading.gif' align='absMiddle'> 检查中,请稍候……";
var url = "../RegistValidate.ashx?username=" + escape(id);
xmlHttp.open("GET", url, true);
xmlHttp.onreadystatechange = ShowResult;
xmlHttp.send(null);
}
function ShowResult() {
if (xmlHttp.readyState == 4) {
if (xmlHttp.status == 200) {
var s;
s
相关问答:
我JSP的页面是:
<%@ page language="java" contentType="text/html; charset=gb2312"
%>
<script>
function Save(){
xmlHttp=GetXmlHttpObject()
if(xmlHttp==nul ......
我在一个html中写如下代码:
JScript code:
<html>
<head>
<script type="text/javascript" charset="utf-8"
src="script/jquery-1.3.2.min ......
本人工作经验一年以上
熟悉asp.net
熟悉javascript
熟悉Css
熟悉ajax
熟悉sqlserver2005
有一年的项目经验
具体项目和其他的就不在这写了
有意者联系:
QQ:359233910
引用
本人工作经验一年以上
熟悉asp ......
asp 翻页怎么实现?
分页可使用分页控件如aspnetpager
没找到此控件!!!!!
第三方组件 需要在网上去下载 http://www.webdiyer.com/Controls/AspNetPager/Downloads
不用控件 怎么做啊!
hehe
不 ......
请教高人,Ajax原理详细讲解 及代码说明
我擦,上google啊。
http://www.w3school.com.cn/ajax/index.asp
楼主什么意图呢?
出 处:http://www.javaeye.com/topic/636187
没做过web前端,所以完全没有用 ......