这是 jQuery 小部件代码:
(function($){
var _this,ele,parent;
$.widget('test.talkWidget',{
options:{
a:'',
b:''
},
destroy: function()
{
alert("asas");
this.element
.remove( ".talk" )
.text( "" );
$.Widget.prototype.destroy.call(this);
},
_createTalkBox:function(){
ele.find(".talk").prepend("<h1>talk box added</h1>");
},
_addReply:function(){alert("reply added");
},
_attachEvent:function(){
ele.on('keypress','textarea',function(e){
if(e.keyCode===13){
alert($(this).val());_this._addReply();
}
});
ele.on('click','.accept-check-off',function(e){
$(this).closest(".media").removeClass("accept-check-off accept-check-on");
$(this).addClass("accept-check-on");
});
ele.on('click','.accept-check-on',function(e){
$(this).closest(".media").removeClass("accept-check-off accept-check-on");
$(this).addClass("accept-check-off");
});
},
_init:function(){
ele=this.element;
_this=this;
parent=$("<div/>").addClass("talk").append("<br/><textarea class='form-control' rows='3'></textarea>");
ele.html(parent);
this._createTalkBox();
this._attachEvent();
}
});
})(jQuery);
我在这里调用这个小部件:
<div id="target"></div>
<button>Show Widget</button>
<button id="b2">Show normal Text</button>
问题是“添加回复”显示的次数与我单击“显示小部件”按钮的次数一样多。实际上,它应该只显示我在 Teaxtarea 中按 ENTER 键的次数。我认为小部件没有正确地破坏自己。