码迷,mamicode.com
首页 > 其他好文 > 详细

页面之间跳转传值

时间:2017-08-31 15:59:57      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:cat   logs   document   bsp   this   href   之间   script   cli   

页面之间传值:

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>  

 

页面之间跳转传值

标签:cat   logs   document   bsp   this   href   之间   script   cli   

原文地址:http://www.cnblogs.com/dongtianqi/p/7458214.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!