JavaScript Ajax编程 应用篇(2)

/** url : 不带请求的url name : 请求键 value : 请求值 return : 带请求字符串的url */ function addURLParam(url, name, value) { url += (url.indexOf("?") == -1 ? "?" : "&"); url += encodeURIComponent(name) + "=" + encodeURIComponent(value); return url; } var xhr = createXHR(); xhr.onreadystatechange = function(){ if (xhr.readyState == 4){ if ((xhr.status >= 200 && xhr.status < 300) || xhr.status == 304){ alert(xhr.responseText); } else { alert("Request was unsuccessful: " + xhr.status); } } }; var url = "example.txt"; url = addURLParam(url, "name", "zhang"); url = addURLParam(url, "age", "23"); // 请求的url变成了:example.txt?name=zhang&age=23 xhr.open("get", url, true); xhr.send(null);

七、POST请求
    1.案例分析:接下来我们共同讨论一个以post方法发送请求的ajax应用,即用户注册,根据你注册用户名返回提示。
    2.实现步骤
        1) 首先要有一个注册的页面(当然,这里很简陋)ajax.html         

<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>无标题文档</title> <style> </style> </head> <body> <form method="post"> 姓名:<input type="text" /><label>请输入用户名</label><br/> 密码:<input type="password" /><br/> <input type="submit" value="登录" /><br/> </form> <script src="https://www.jb51.net/EventUtil.js"></script> <script src="https://www.jb51.net/serialize.js"></script> <script src="https://www.jb51.net/ajax.js"></script> <script src="https://www.jb51.net/ajaxDo.js"></script> </body> </html>

2) 接着当然是javascript部分
            ①EventUtil.js,这里只是将事件监听的部分列出来              

var EventUtil = { addEvent : function (element, type, handler) { if (element.addEventListener) { element.addEventListener(type, handler, false); } else if (element.attachEvent) { element.attachEvent("on" + type, handler); } } }

②serialize.js:表单序列化            

function serialize(form){ var parts = [], field = null, i, len, j, optLen, option, optValue; for (i=0, len=form.elements.length; i < len; i++){ field = form.elements[i]; switch(field.type){ case "select-one": case "select-multiple": if (field.name.length){ for (j=0, optLen = field.options.length; j < optLen; j++){ option = field.options[j]; if (option.selected){ optValue = ""; if (option.hasAttribute){ optValue = (option.hasAttribute("value") ? option.value : option.text); } else { optValue = (option.attributes["value"].specified ? option.value : option.text); } parts.push(encodeURIComponent(field.name) + "=" + encodeURIComponent(optValue)); } } } break; case undefined: //字段集 case "file": //文件输入 case "submit": //提交按钮 case "reset": //重置按钮 case "button": //自定义按钮 break; case "radio": //单选按钮 case "checkbox": //复选框 if (!field.checked){ break; } /* 执行默认操作*/ default: //不包含没有名字的表单字段 if (field.name.length){ parts.push(encodeURIComponent(field.name) + "=" + encodeURIComponent(field.value)); } } } return parts.join("&"); }

③ajax.js,就是上面的那个createXHR()函数,这里就不罗列了。
            ④ajaxDo.js,核心文件,就是我们操作部分,这个名字乱写的。
              

var form = document.forms[0]; // 获取表单 var username = form.elements['username']; // 用户名 var userLabel = document.querySelector("#userLabel"); // 提示标签 EventUtil.addEvent(username, "blur", function() { var xhr = createXHR(); xhr.onreadystatechange = function(){ if (xhr.readyState == 4){ if ((xhr.status >= 200 && xhr.status < 300) || xhr.status == 304){ var text = xhr.responseText; // 当为true时,提示绿色字体 // 当为false时,提示为红色字体 if(text) { userLabel.style.color = "green"; userLabel.firstChild.data = "恭喜你,用户名可用"; } else { userLabel.style.color = "red"; userLabel.firstChild.data = "对不起,该用户已存在"; } } else { alert("Request was unsuccessful: " + xhr.status); } } }; // POST请求 xhr.open("post", "dome.php", true); // 提交的内容类型 xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); // 将表单序列化 xhr.send(serialize(form)); });

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wzsgdx.html