避免在文本区域中按 Enter 时正常的鼠标光标移动

发布于 2024-11-07 05:34:13 字数 543 浏览 0 评论 0原文

您好,在我的网页中,我正在按 Enter 按钮保存文本区域内容。它正在保存,但发生的情况是鼠标光标移动到下一行。它总是以换行符保存。我只是想避免鼠标光标移动到下一行并保存它。为了保存它,我对文本区域使用 event.keycode 之类的东西,然后保存它

$('.text_desc_cls').keyup(function(event){save_text_val(event,this.id);});

function save_text_val(event,this_id){
var keycode = (event.keyCode ? event.keyCode : event.which);
if(keycode == '13'){
    req_id = '#'+this_id;
    textarea_val = $(req_id).val();
    $.post("./funcs.php?func=save_int_text_val",{textarea_val:textarea_val},function(data){
        alert('done');
    }
}}

hi in my webpage i am saving textarea contents on pressing enter button . it is saving but what happens is mouse-cursor moves to next line . it always saves with a newline character . i just want to avoid the mouse-cursor moving to next line and just save it . for saving it i use event.keycode kind of stuff for the textarea and then save it

$('.text_desc_cls').keyup(function(event){save_text_val(event,this.id);});

function save_text_val(event,this_id){
var keycode = (event.keyCode ? event.keyCode : event.which);
if(keycode == '13'){
    req_id = '#'+this_id;
    textarea_val = $(req_id).val();
    $.post("./funcs.php?func=save_int_text_val",{textarea_val:textarea_val},function(data){
        alert('done');
    }
}}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

冷默言语 2024-11-14 05:34:13

最简单的解决方案是获取 keydown 上的值 - 这将为您提供没有最新条目的值。它将在文本区域中显示换行符,因此如果您需要删除换行符,您可以切换到 keyup 而不是 keydown 并进行替换,如下所示:

$(req_id).val($(req_id).val().replace(/ \n/,''));

The easiest solution would be to grab the value on keydown - that will give you the value without the latest entry. It will show the newline in the textarea, so if you need that removed, you could switch to keyup rather than keydown and do a replace like so:

$(req_id).val($(req_id).val().replace(/\n/,''));

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文