美文网首页美文共赏
h5 a标签传递数据,在第二个页面获取数据

h5 a标签传递数据,在第二个页面获取数据

作者: wodeph | 来源:发表于2021-12-03 17:35 被阅读0次

    var strHref = location.href; //获取地址

            console.log(strHref);

      var intPos = strHref.indexOf("?"); // 找到第一个?位置

            console.log(intPos);

      var strRight = strHref.substr(intPos + 1); //从?下一个位置开始裁切 得到所有参数的字符串

      console.log(strRight);

      var s_getID = strRight.split("&") || strRight.split(" ");  //利用&将字符串切割为字符串数组

      console.log(s_getID);

    // 找到需要的参数的下标 已知参数名称为UUID 所以可以确定需要裁切的位数

      var uuid = s_getID[0].split("=") || strRight.split(" ");

      console.log(uuid);

       console.log(decodeURIComponent(decodeURIComponent(uuid[1])));

    相关文章

      网友评论

        本文标题:h5 a标签传递数据,在第二个页面获取数据

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