博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Ajax2
阅读量:5216 次
发布时间:2019-06-14

本文共 1305 字,大约阅读时间需要 4 分钟。

一、完整版Ajax

$.ajax({                url: "Ashxs/Login.ashx",                data: { "name": name, "pwd": pwd },                type: "post",                dataType: "json",                success: function (data) {                    if (data.has == "0") {                        $("#span_error").text('用户名密码错误!');                    }                    else {                        window.location.href = "HtmlPage2.html";                    }                },//success                error: function () {                     $("#span_error").text('服务器连接失败!');                },//服务器连接不上或是服务器内容有错误时执行                beforeSend: function () {                    $("#txt_username").attr('disabled', 'disabled');                    $("#txt_password").attr('disabled', 'disabled');                    $("#btn1").attr('disabled', 'disabled');                    $("#btn1").val('登陆中...');                },//执行ajax时先执行beforeSend再执行其它                complete: function () {                    $("#txt_username").removeAttr('disabled');                    $("#txt_password").removeAttr('disabled');                    $("#btn1").removeAttr('disabled');                    $("#btn1").val('登   陆');                }//执行完beforeSend后恢复原状            });//btn1.ajax

 

转载于:https://www.cnblogs.com/bosamvs/p/5782023.html

你可能感兴趣的文章
最短路问题(dijkstral 算法)(优化待续)
查看>>
hdu--1873--看病要排队
查看>>
C#实现Memcached分布式缓存,指定服务器保存变量
查看>>
Linux常用命令大全(分类)
查看>>
VS2005通过网络连接CE设备进行调试开发
查看>>
Video.js
查看>>
ASP.net和ASP的区别
查看>>
(转)计算机学科分类
查看>>
Google Maps API V3 之绘图库 信息窗口
查看>>
MySQL简介与安装
查看>>
web桌面
查看>>
MySql对日期的操作
查看>>
使用localStorage完成信息发布缓存
查看>>
征服世界
查看>>
Oracle 提示密码过期问题:the password will expire
查看>>
Android 隐藏输入软键盘
查看>>
Delphi Sysem.JSON 链式写法(转全能中间件)
查看>>
SqlServer触发器的理解
查看>>
AR/AP - 借项通知单和贷项通知单的区别
查看>>
工厂模式(Factory Pattern)
查看>>