When div is set to contentEditable=true, the cursor cannot be positioned after resetting its content

When div is set to contentEditable=true, the cursor cannot be positioned after resetting its content

I was recently working on a comment feature that required the ability to comment on emoticons, so the contentEditable property was the first thing to consider. As a result, a problem arose...

First, comment on the district chief:

img

When the input content exceeds the limit, clear the content after the user input exceeds the limit.

This is easy... But after clearing the content, the cursor actually moved to the front, which is a headache.

After various searches, I found a solution. Without further ado, here is the code!

var _div = document.querySelector('.discuss_area');
var range = document.createRange();

range.selectNodeContents(_div);
range.collapse(false);

var sel = window.getSelection();
sel.removeAllRanges();
sel.addRange(range);

All of them use native events, so jQuery objects cannot be used.

This article is about solving the problem that when a div is set to contentEditable=true, the cursor cannot be positioned correctly after resetting its content. This is the end of the article. For more relevant content about div setting contentEditable=true, please search 123WORDPRESS.COM’s previous articles or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

<<:  Common naming rules for CSS classes and ids

>>:  Detailed explanation of CSS background and border tag examples

Recommend

JavaScript microtasks and macrotasks explained

Preface: js is a single-threaded language, so it ...

Mysql tree-structured database table design

Table of contents Preface 1. Basic Data 2. Inheri...

Mysql 8.0 installation and password reset issues

Mysql 8.0 installation problems and password rese...

JavaScript to achieve elastic navigation effect

This article shares the specific code for JavaScr...

Example of how to mosaic an image using js

This article mainly introduces an example of how ...

10 bad habits to avoid in Docker container applications

There is no doubt that containers have become an ...

Best Practices for Developing Amap Applications with Vue

Table of contents Preface Asynchronous loading Pa...

Do you know all 24 methods of JavaScript loop traversal?

Table of contents Preface 1. Array traversal meth...

VMware installation of Centos8 system tutorial diagram (Chinese graphical mode)

Table of contents 1. Software and system image 2....

Detailed summary of mysql sql statements to create tables

mysql create table sql statement Common SQL state...

CSS implements six adaptive two-column layout methods

HTML structure <body> <div class="w...

Introduction to Docker Architecture

Docker includes three basic concepts: Image: A Do...

How to use crontab to backup MySQL database regularly in Linux system

Use the system crontab to execute backup files re...

How to understand Vue's simple state management store mode

Table of contents Overview 1. Define store.js 2. ...