标签: Ajax

5 篇文章

thumbnail
Jquery Ajax 2
后端index.js const exp = require('express')       app = exp() app.use(exp.static('static')) app.listen(3000,()=>{     console.log('服务器运行了') }) index.html <!DOCTYPE html>…
thumbnail
jQuery Ajax 1
需要安装Node.js本地测试,本次还需下载layer弹出层插件和jQuery.js 后端index.js: const exp = require('express') const bodyParser = require('body-parser') const app = exp() app.use(exp.static('wwwroot')…
thumbnail
初学 Ajax
概念 Ajax  (Async JavaScript & XML) 异步的JS和XML 最先由微软发明,Google搜索在首页上使用Ajax做搜索关键词建议后,Ajax就广泛应用起来了。 XML数据量偏大、解析相对困难、性能差。后来大家就转向JSON,但Ajax的名字没有变 XHR   xmlHttpRequest 向服务器端发起一个网络请…