前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >cookie的跨页面传值问题仿购物车案例

cookie的跨页面传值问题仿购物车案例

作者头像
王小婷
发布2018-12-19 16:39:42
1.3K0
发布2018-12-19 16:39:42
举报
文章被收录于专栏:编程微刊编程微刊

大家都知道cookie的特性, cookie生效在同一个域名下,cookie储存量有限,cookie主要用于记录用户的一些信息,例如记录用户的登录信息使用户一段时间内不用登录,它有服务器创建,并放在客户端。

跨页面传值定义:统指WEB页面之间的传值,包括简单的页面表单传值和页面程序中的变量传值

以下仿写cookie的跨页面传值问题仿购物车案例,把list界面选定的数值跳转带到shopCar界面。

list界面:

代码语言:javascript
复制
<!doctype html>
<html lang="en">

    <head>
        <meta charset="UTF-8">
        <title>Document</title>
        <style>
            * {
                margin: 0 auto;
            }
            
            .content {
                width: 800px;
                height: 100px;
                background: #f9f9f9;
                border-radius: 5px;
                box-shadow: 0 3px 10px #666;
                margin: 50px auto;
            }
            
            .picwarp {
                width: 120px;
                height: 98px;
                border: 1px solid #fff;
                float: left;
            }
            
            .picwarp img {
                width: 100%;
                height: 100%;
            }
            
            .warp:after {
                content: '';
                display: block;
                clear: both;
            }
            
            .warp input {
                display: block;
                float: right;
                background: none;
                border: 2px solid #fff;
                border-radius: 2px;
                width: 80px;
                height: 30px;
                margin-top: 30px;
                margin-right: 30px;
            }
            
            .car {
                float: right;
                position: relative;
                width: 80px;
                height: 40px;
                color: red;
                font-size: 30px;
                font-weight: bold;
                right: -100px;
                top: -40px;
                background-image: url(images/1.png);
                background-size: 100% 90%;
                background-repeat: no-repeat;
            }
            
            .text {
                float: left;
            }
            
            .text h4 {
                padding-left: 40px;
                padding-top: 20px;
            }
            
            .text h3 {
                padding-top: 15px;
                padding-left: 40px;
                color: red;
            }
        </style>
        <script src='cookie.js'></script>
        <script>
            window.onload = function() {
                var add = document.getElementById('add');
                var redu = document.getElementById('reduce');
                var num = 0;
                var res = document.getElementById('num');
                var buy = document.getElementById('buy');
                add.onclick = function() {
                    num++
                    res.innerHTML = num;
                }

                redu.onclick = function() {
                    if(num > 0) {
                        num--
                        res.innerHTML = num;
                    }
                }
                buy.onclick = function() {
                    var resNum = res.innerHTML;
                    cookie.setCookie('num', resNum);
                    window.location.href = 'shopCar.html'

                }
            }
        </script>
    </head>

    <body>
        <div class="content">
            <div class="warp">
                <div class="picwarp">
                    <img src="images/2.png" alt="">
                </div>
                <div class="text">
                    <h4>ins小清新玫瑰感化客厅装饰花瓶</h4>
                    <h3>售价:18</h3>
                </div>
                <input type="button" id="buy" value='立即购买'>
                <input type="button" id='add' value='增加'>
                <input type="button" id='reduce' value='减少'>
            </div>

            <div class="car">
                <span class='num' id='num'>0</span>
            </div>

        </div>
    </body>
</html>

shopCar界面:

代码语言:javascript
复制
<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    
    <style>
    #div1{
        width: 859px;
        height: 100px;
        line-height: 100px;
        border: 2px solid #b6b6b6;
        color: blueviolet;
        margin: 80px auto;
    
        font-size: 18px;
        text-align: center;
        
    }

    body{
        background:#f9f9f9;
    }
    
    </style>
</head>
<body>
    <div id='div1'></div>
</body>
<script src='cookie.js'></script>
    <script>
    window.onload=function(){
        var num=cookie.getCookie('num')
        var oDiv=document.getElementById('div1');
        if(num=='0'){
            oDiv.innerHTML='你没有选中任何商品';
            setTimeout(function(){
                window.location.href='list.html'

            },1000)

        }else{

            oDiv.innerHTML='我知道我要买'+num+'束漂亮的花朵!!心情美美哒!!!'+'<img src="images/2.png">';

        }
    }
    </script>
</html>

封装的cookie.js

代码语言:javascript
复制
var cookie={
    setCookie:function(name,value,date){
        var d=new Date();
        d.setTime(d.getTime()+date);
        document.cookie=name+'='+value+';expires='+d;
    },
    getCookie:function(name){
        var arr=document.cookie.split('; ');
        for(var i = 0 ; i < arr.length; i ++){
            var arr2=arr[i].split('=');
            if(arr2[0]==name){
                return arr2[1];
            }
        }

        return '';
    },
    removeCookie:function(name){
        cookie.setCookie(name,'',-1)
    }

}

效果:

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2018.11.29 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档