0

我有一个名为“块”的 div。当我关注这个 div 时,这是一个可编辑的 div (contenteditable="true"),如果我按 ENTER 光标会得到底行。我想阻止这件事。当我按下回车键时,我想删除获取底行功能。

有没有办法做到这一点?

4

2 回答 2

1

您可以通过监听 keydown 事件并返回 false 来防止这种情况。

// Replace '#block' with your element ID 
$('#block').on('keydown', function(e){ 
    // e.which returns the keyCode for the key pressed 
    // where '13' is the enter key.
    if(e.which == 13) 
       return false; 
});
于 2013-08-09T21:29:47.943 回答
0

身份证或班级?使用 $('block').last().css('display', 'block');

http://api.jquery.com/last/

于 2013-08-09T21:14:45.970 回答