我有一个包含五次单词的字符串。如果我选择了 hello 它应该返回 4
<div id="content">hello hai hello hello hello</div>
获取选定的文本脚本
<script>
if(window.getSelection){
t = window.getSelection();
}else if(document.getSelection){
t = document.getSelection();
}else if(document.selection){
t =document.selection.createRange().text;
}
</script>
如果选择 hai
它应该返回1
。
如果选择 hello hai
它应该返回1
。请帮忙。