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

关于页面跳转带值问题

时间:2018-06-04 11:53:50      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:text   gen   win   path   bsp   关于   nbsp   outer   size   

 a页面

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <script src="js/jquery-3.0.0.min.js"></script>
    <script src="js/jquery.params.js"></script>
    <title>a页面</title>
    <script>
        $(function(){
             name = $("#name").text();
             age = $("#age").text();
            $("#btn").on("click",function(){
               jump1();
            });
        });
        function jump1(){
            url = "b.html?name="+name+"&age="+age;//此处拼接内容
            window.location.href = url;
        }
    </script>
</head>
<body>
   <div id="name">tony</div>
   <div id="age">23</div>
   <button id="btn">跳转</button>
</body>
</html>

 跳转到b页面

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <script src="js/jquery-3.0.0.min.js"></script>
    <script src="js/jquery.params.js"></script>
    <title>b页面</title>
    <script>
        $(function(){
           getData1();
        });
        function getData1(){
            var name = $.query.get("name");
            var age = $.query.get("age");
            $("#name").text(name);
            $("#age").text(age);
        }
    </script>
</head>
<body>
   <div id="name"></div>
   <div id="age"></div>
</body>
</html>

 vue 跳转页面带参数

// 1.页面中的代码
this.$router.push({
    name: ‘generalAdminOrderFlowAdd‘,
    params: {
      type: ‘add‘,
      templateType: this.orderTemplateType
     }
 })
 // 2.路由中的代码
 {
   path: ‘:type/:templateType‘,
   name: ‘generalAdminOrderFlowAdd‘,
   component:   require(‘@/components/generalAdmin/order/orderFlow‘)
}
// 3.获取页面中的参数值
 let type = this.$route.params.type

 

关于页面跳转带值问题

标签:text   gen   win   path   bsp   关于   nbsp   outer   size   

原文地址:https://www.cnblogs.com/llfy/p/9131644.html

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