假设我有一些这样的 HTML 代码:
<body contentEditable="true">
<h1>Some heading text here</h1>
<p>Some text here</p>
</body>
现在插入符号(闪烁的光标)在<h1>
元素内闪烁,让我们说单词"|heading"
.
如何使用 JavaScript 获取插入符号所在的元素?在这里,我想获取节点名称:"h1"
.
这需要仅在 WebKit 中工作(它嵌入在应用程序中)。它最好也适用于选择。