为了账号安全,请及时绑定邮箱和手机立即绑定

一直报 Uncaught TypeError: Cannot set property 'init' of undefined at index3.js:10 at index3.js:57

var rating = (function () {


// 点亮整颗

var LightEntire = function (el, options) {

this.$el = $(el);

this.$itme = this.$el.find(".rating-item");

this.opts = options;

};


LightEntire.phototype.init = function () {

this.LightOn(this.opts.num);

this.bindEvent();

};


LightEntire.phototype.LightOn = function (num) {

num = parseInt(num);


this.$itme.each(function (index) {

if (index<num) {

$(this).css("background-color","yellow");

}else{

$(this).css("background-color","#EEE");

}

})

};


LightEntire.phototype.bindEvent = function () {

var self = this;


this.$el.on("mouseover",".rating-item",function () {

self.LightOn($(this).index() + 1);

}).on("click",".rating-item",function () {

self.opts.num = $(this).index() + 1;

}).on("mouseout",function () {

self.LightOn(self.opts.num);

})

};


// 默认参数

var defaults = {

num: 0,

readOnly: false,

select: function () {},//鼠标移入的方法

chosen: function () {}//鼠标点击的方法

}


// 初始化

var init = function (el, options) {

options = $.extend({}, defaults, options);

new LightEntire(el, options).init();

};


return {

init: init

};


})();


rating.init("#rating",{

num: 2,

}); 


正在回答

1 回答

吧  phototype 改成  prototype

0 回复 有任何疑惑可以回复我~
#1

韶华_易逝 提问者

可以使用
2018-09-27 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

一直报 Uncaught TypeError: Cannot set property 'init' of undefined at index3.js:10 at index3.js:57

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信