标签:ajax return str function ati indexof class color 参数
此操作主要用于动态 ajax 请求
1、首先封装一个函数 GetRequest(),能动态获取到 url 问号"?"后的所有参数
,
function GetRequest() { var url = location.search; //获取url中"?"符后的字串 if (url.indexOf("?") != -1) { //判断url中是否存在问号 var str = url.substr(1); //抽取问号后面的那句话 从下标1开始,就是刚好除开? var strs = str.replace(‘_special‘,‘ ‘) }
2、如果需要复用,调用函数即可(API接口地址+调用函数)
url:"http://www.zhm365.com/zhm/api/category_news/query_video_advert?"+GetRequest(),
标签:ajax return str function ati indexof class color 参数
原文地址:https://www.cnblogs.com/xxflz/p/9397216.html