内容可编辑,在文本末尾设置插入符号(跨浏览器)
2022-08-30 04:54:48
在 Chrome 中输出:
<div id="content" contenteditable="true" style="border:1px solid #000;width:500px;height:40px;">
hey
<div>what's up?</div>
<div>
<button id="insert_caret"></button>
我相信在FF中它会看起来像这样:
hey
<br />
what's up?
在IE中:
hey
<p>what's up?</p>
不幸的是,没有好的方法可以让每个浏览器都插入一个而不是一个div-或p-tag,或者至少我在网上找不到任何东西。<br />
无论如何,我现在试图做的是,当我点击按钮时,我希望在文本末尾设置插入符号,所以它应该看起来像这样:
hey
what's up?|
任何方法来做到这一点,所以它在所有浏览器中工作?
例:
$(document).ready(function()
{
$('#insert_caret').click(function()
{
var ele = $('#content');
var length = ele.html().length;
ele.focus();
//set caret -> end pos
}
}