里面有一些formatted
文字textarea
,光标在某个地方。我需要检查光标是否在某些特定标签之间。
示例:
foo |
bar。
isBetween(['b', 'strong']); // should return true in above case
我有内部的回报function
(有一些问题,但现在让我满意)。所以,我只需要那个。position
cursor
textarea
IE
isBetween()
function
谢谢你的帮助!
更新:
<p>qwer<b>ty|ui</b>op</p>
isBetween(['p']); // should also return true, because the cursor in not only between 'b', it is between 'p' too