contentEditable div replace innerHTML on the fly
Is there a way开发者_JAVA技巧 ( except Rangy library ) to change contentEditable Div InnerHTML on the fly, like on keyup, with no cursor position / focus lose? I'd like to use pure javascript code, as simple as it is possible.
for example :
<div id="divId" contentEditable="true" onkeyup="change(this)"></div>
then javascript :
function change(element)
{
element.innerHTML = element.innerHTML.replace(/.../, '...');
}
Thanks.
If you're replacing the HTML, you will need some means of saving and restoring your selection. The options are:
- Insert elements with IDs at the start and end of the selection before the HTML replacement, retrieve them by ID afterwards and move the selection boundaries using those elements. This is the most robust method and is what Rangy does.
- Store some kind of character-based offset for the start and end of the selection before the HTML replacement and recreate the selection afterwards. This has all kinds of problems in the general case but may be good enough, depending on your needs. I've posted functions on SO to do this before that depend on Rangy, but you could easily strip out the Rangy stuff if you don't mind losing support for IE < 9.
- Store and restore selection boundaries by pixel coordinates. Browser support for this is not good and will not be suitable if your HTML replacement changes the layout.
This doesn't use the keyup event but perhaps it will suffice? Note that applies to the body you can obviously target just a certain element.
document.body.contentEditable='true';
document.designMode='on';
void 0;
精彩评论