js变量赋值问题

clipboard.png

最近要做一个类似大富翁游戏那样的效果,点开始按钮转盘开始转,比如转到4停下来,下一次再转的时候要从4开始走,我要怎么样记住4这个值呢,请大神指点,感激不尽

(function ($) {
        var Richman = function (o, options) {
            this.o = o;
            this.options = $.extend({}, Richman.options, options);
            this.number= this.options.number;
            this.index = this.options.index;
            this.timer = null;
            this.init();
        };
        Richman.prototype = {
            init: function () {
                this.gridRoll(this.number);
            },
            gridRoll: function (number) {
                var _this = this;
                this.timer = setInterval(function () {
                    $(".item-" + _this.index).addClass('active').siblings().removeClass('active');
                    if(_this.index == number) {
                        clearInterval(_this.timer);
                    }
                    _this.index++;
                }, 500)
            }
        };
        $.fn.Richman = function (options) {
            options = $.extend({}, $.fn.Richman.options, options);
            this.each(function () {
                new Richman($(this), options);
            })
        };
        Richman.options = {
            number: 4,
            index: 0,
            start: 0
        }
    })(jQuery);
    $(document).ready(function () {
        $(".btn-click").on('click', function () {
            $(".wrap").Richman();
        })
    })
阅读 3.6k
5 个回答

用cookie

//每次结束的时候 set一下cookie
Cookies.set("number", number);
//开始的时候获取一下
var number=Cookies.get("number");
//最终结束的时候删除一下
Cookies.remove("number");

github地址

方法一:设置全局变量
方法二:使用闭包:

function example(){
    var times = 4;
    return function(){
        //在这个函数体里可以获取times的值
        times++;
   }
}

大概能想到的两个思路,供参考

使用jquery 的data 方法将数据保存在dom 上。

1.存本地
2.全局
3.闭包
4.类似store的外层订阅

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题