- 浏览: 34500 次
- 性别:
- 来自: 深圳
最新评论
-
qq138744:
哥啊,, 你在在jsp 用 eclipse jsp edito ...
eclipse spket使用 jsp 报错 -
MichelleWang:
LZ第三行貌似写错了,应该是===
两个等号与三个等号的区别
文章列表
ajax:
1、xmlHttpRequest对象
2、设置回调函数 onreadystatechange
3、新建连接 open
4、发送 send
function Ajax(){
};
Ajax.xmlHttpRequest = {};
Ajax.prototype.checkUserNameIsExist = function(obj){
var uname = obj.value;
if (!uname){
alert("用户名不能为空");
obj.focus();
return ;
}else{
Ajax.ajax(uname);
...