页面之间跳转传值

Posted chinaUnicom

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了页面之间跳转传值相关的知识,希望对你有一定的参考价值。

页面之间传值:

a.html

<html>  
 <head>  
  <title> New Document </title>  
    <script>  
      function   to (){  
        var  getval =document.getElementById("cc").value;  
        document.location.href("b.html?cc="+getval);     
      }  
    </script>  
 </head>  
 <body>  
  <input type="text" id ="cc" > <input type="button"  value="a"  onclick="to()" >  
 </body>  
</html>

b.html

<html>  
 <head>  
 <title> New Document </title>  
 <script>    
  var thisURL = document.URL;    
  var  getval =thisURL.split(‘?‘)[1];  
  var showval= getval.split("=")[1];  
  function  showvalf(){  
     alert(showval);  
     document.getElementById(‘ee‘).value=showval;  
  }  
</script>  
 </head>  
 <body onload="showvalf()">  
  <input type="text"  id ="ee" />  
 </body>  
</html>  

 

以上是关于页面之间跳转传值的主要内容,如果未能解决你的问题,请参考以下文章

iOS 页面跳转传值,属性传值,代理传值,代码块传值,单例传值,通知传值

EasyUI页面跳转后传值出现乱码

uniapp 页面跳转传值和接收

Vue-(10)页面跳转-传值

跳转页面与传值(Swift4)

aspx 跳转到页面并传值