2016年4月25日
摘要: function ajax(method, url, data, success) { var xhr = null; try { xhr = new XMLHttpRequest(); } catch (e) { xhr = new ActiveXObject('Microsoft.XMLHTTP'); } if (method == 'get' && data) { ... 阅读全文
posted @ 2016-04-25 16:46 hduhdc 阅读(106) 评论(0) 推荐(0) 编辑