在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>
不幸的是,没有一种很好的方法来使每个浏览器都插入一个<br />
而不是div标签或p标签,或者至少我在网上找不到任何东西。
无论如何,我现在想做的是,当我按下按钮时,我希望将插入符号设置在文本的末尾,因此它应该看起来像这样:
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
}
}
1
这个工作最适合我
—
ИльяЗеленько