window.location.href 传参url


window.location.href 传参url_第1张图片
 

<!-- 正解  -->
function fabu(){

            $.ajax({
                cache: true,
                type: "POST",
                url:"${wxTongchenghuodong==null?"/pcSacontent/launch_event_add":"/pcSacontent/updateIssue"}",
                data:$('#myform').serialize(),// 你的formid
                async: false,
                success: function(data) {
                    alert(data);
                    var val = document.getElementById("issueid").value;
                    var urlU = "/pcSacontent/toUpdateIssue?id="+val;
                    window.location.href='${wxTongchenghuodong==null?"/pcSacontent/launch_event":urlurlU}';
                }
            });
        }

 需要拼接url

你可能感兴趣的:(window.location.href 传参url)