Ajax
基本结构:
$.ajax({ url: 请求的url, type: 请求方式(get/post/put/....), data: 响应数据(通常会使用json.stringfy()进行操作), //dataType: 'jsonp', //注意,如果跨域才添加 beforeSend: function () { // 执行一些请求开始前的操作,比如:防止用户重复点击,数据加密 }, success: function (res) { // 成功响应消息体 }, error: function (xmlHttpRequest, textStatus, errorThrown) { alert(xmlHttpRequest.responseText); // 输出返回的响应信息 } });
关于使用js页面直接接收导航栏参数
AddBy 2020-06-22
window.location.search; // 使用能够直接获取导航栏的输入参数,例如:http://localhost:8080/FreeStudy/UserHelp/mobile.html?System=Listen&DeviateTop=20,能够获取“?System=Listen&DeviateTop=20”
除此之外,可以直接获取
href:整个连接地址,即http://localhost:8080/FreeStudy/UserHelp/mobile.html?System=Listen&DeviateTop=20
host:IP地址+端口号,即:localhost:8080
hostname:主机名称(IP地址)
port:端口号
origin:即http://localhost:8080
pathname:即FreeStudy/UserHelp/mobile.html?System=Listen&DeviateTop=20
protocol:请求协议
EndBy 2020-06-22