js实现前后端分离点击新闻列表跳转到相应的详情页

 function getUrlParam(name) {
        var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)"); //构造一个含有目标参数的正则表达式对象
        var r = window.location.search.substr(1).match(reg); //匹配目标参数
        if (r != null) return unescape(r[2]);
        return null; //返回参数值
    }

    //接收URL中的参数sx
    var id = getUrlParam('sx');
    var url = 'api' + id
$.ajax({
        url:url,
        dataType: 'json',
        type: 'get',
        async: false,
        success: function(data) {
            // console.log(data);
        }
    });

getUrlParam(‘sx’)获取sx的参数
js实现前后端分离点击新闻列表跳转到相应的详情页_第1张图片

你可能感兴趣的:(JavaScript,javascript)