我想制作两个文本框,这样如果一个人写了一些文本,前 50 个字符应该在第一个文本框中,接下来输入的应该进入下一个文本框
在 jquery 或 Javascript 中
代码看起来像这样
var content_id = 'editable_div';
最大值 = 50;
//binding keyup/down events on the contenteditable div
$('#'+content_id).keyup(function(e){ check_charcount(content_id, max, e); });
$('#'+content_id).keydown(function(e){ check_charcount(content_id, max, e); });
function check_charcount(content_id, max, e)
{
if(e.which != 50 && $('#'+content_id).text().length > max)
{
//the remaining part focusing the mouse on to the next div let the id of the next editable div be next
e.preventDefault();
}
}