美文网首页
页面跳转传值

页面跳转传值

作者: 西西西瓜sama | 来源:发表于2018-03-22 18:56 被阅读49次

    第一个页面

            function goto() {
                window.location.href = 'home_vue.html?name=lipengda&age=12';
            }
    

    第二个页面

            var loc = location.href;
            var n1 = loc.length;//地址的总长度
            var n2 = loc.indexOf("=");//取得=号的位置
            var id = decodeURI(loc.substr(n2+1, n1-n2));//从=号后面的内容
            alert(id);
    

    相关文章

      网友评论

          本文标题:页面跳转传值

          本文链接:https://www.haomeiwen.com/subject/hlhzqftx.html