admin管理员组文章数量:1351997
I write the following code all the time to handle when the enter key pressed:
$("#selectorid").keypress(function (e) {
if (e.keyCode == 13) {
var targetType = e.originalTarget
? e.originalTarget.type.toLowerCase()
: e.srcElement.tagName.toLowerCase();
if (targetType != "textarea") {
e.preventDefault();
e.stopPropagation();
// code to handler enter key pressed
}
}
});
Is there a way to extend jQuery so that I could just write:
$("#selectorid").enterKeyPress(fn);
I write the following code all the time to handle when the enter key pressed:
$("#selectorid").keypress(function (e) {
if (e.keyCode == 13) {
var targetType = e.originalTarget
? e.originalTarget.type.toLowerCase()
: e.srcElement.tagName.toLowerCase();
if (targetType != "textarea") {
e.preventDefault();
e.stopPropagation();
// code to handler enter key pressed
}
}
});
Is there a way to extend jQuery so that I could just write:
$("#selectorid").enterKeyPress(fn);
Share
Improve this question
edited Jun 15, 2019 at 8:04
Brian Tompsett - 汤莱恩
5,89372 gold badges61 silver badges133 bronze badges
asked Mar 26, 2010 at 17:44
Kenneth JKenneth J
4,89612 gold badges41 silver badges56 bronze badges
4 Answers
Reset to default 6You can extend jquery something like:
jQuery.fn.returnPress = function(x) {
return this.each(function() {
jQuery(this).keypress(function(e) {
if ((e.which && e.which == 13) || (e.keyCode && e.keyCode == 13)) {
x();
return false;
}
else {
return true;
}
});
});
};
Which can be invoked like:
$('selector').returnPress(function() { alert('enter pressed'); });
You can do what David G says, but perhaps the most correct way to approach this would be to write a custom event:
$(document).keypress(function(evt){
if(evt.keyCode==13) $(evt.target).trigger('enterPress');
});
Which could be bound like so:
$(document).bind('enterPress', fn);
See an example here: http://jquery.nodnod/cases/1821/run
The advantage to this approach is that you can bind, unbind, namespace, and trigger the event like any other event in jQuery.
You can define it as a plugin with a bit less code like this:
jQuery.fn.enterKeyPress = function(callback) {
return this.not("textarea").keypress(function (e) {
if (e.keyCode == 13) {
callback($(this));
return false;
}
});
};
Use like this:
$("input").enterKeyPress(function() { alert('hi'); });
This approach still ignores <textarea>
, but instead of checking every keystroke, we just never bind the keypress
event to any textarea.
This is what I use to capture the enter key on any form element, and convert it into a tab. I have made it so the enter key works normally in a textarea, and on submit, reset and button elements.
$.fn.focusNext = function(e) {
var t = $(this);
if ( t.is(":submit")==true || t.is(":reset")==true || t.is("textarea")==true || t.is("button")==true ) { exit(); }
if (e.which==13 || e.which==3) {
return this.each(function() {
e.preventDefault();
var fields = $(this).parents("form:eq(0)").find(":input:visible");
var index = fields.index( this );
if ( index > -1 && ( index + 1 ) < fields.length ) { fields.eq( index + 1 ).focus(); }
});
}
return true;
};
And to use it, it's called like so
$(":input").keypress(function(e) { $(this).focusNext(e); });
OR
$(":input").live("keypress", function(e) { $(this).focusNext(e); });
本文标签: javascriptIs there way to extend jQuery to handle a custom enter key eventStack Overflow
版权声明:本文标题:javascript - Is there way to extend jQuery to handle a custom enter key event? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743906136a2559557.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论