我创建了一个函数 enterkey 来检测您何时单击按钮 enter。问题是我必须绑定此函数才能在 jquery 创建的输入中添加注释。我怎样才能做到这一点?谢谢!:)
$.fn.enterKey = function (fnc) {
return this.each(function () {
$(this).keypress(function (ev) {
var keycode = (ev.keyCode ? ev.keyCode : ev.which);
if (keycode == '13') {
fnc.call(this, ev);
}
})
})
}
var add_comment = { // add comment
urlRemove : CI_ROOT + 'add_comment/',
run : function() {
add_comment.share('.comment');
},
share : function(obj) {
$(obj).enterKey(function() { // I have to bind this function
var comment = $(this);
if (comment.val() != "") {
$.ajax({
type: "POST",
url: add_comment.urlRemove,
data: "text=" + comment.val() + "&post_id=" + comment.attr('id'),
success: function(html) {
comment.val('');
},
error: function(){
alert('Error on ajax call');
}
});
} else {
return false;
}
});
}
};