1

我正在尝试使用 javascript/jquery 查找文本索引,但我没有得到确切的解决方案。

考虑文字是这样的......

 Hi all. hello world. Hi all. Hello world.Hi all. hello world. Hi all. Hello world.Hi all. hello world. Hi all. Hello world.Hi all. hello world. Hi all. Hello world.Hi all. hello world. Hi all. Hello world.Hi all. hello world. Hi all. Hello world.Hi all. hello world. Hi all. Hello world.Hi all. hello world. Hi all. Hello world.Hi all. hello world. Hi all. Hello world.Hi all. hello world. Hi all. Hello world.

如何在任何行上获得所选“Hello”单词的确切位置?我尝试了 indexOf,但它给了我第一个 hello 文本索引。请任何人为此提出解决方案。

提前致谢。

4

3 回答 3

1

你可能想看看这个http://help.dottoro.com/ljkstboe.php

$(document).mouseup(function(){
    selection = window.getSelection();
    index = selection.anchorOffset;
    console.log(index);
});

演示:http ://slackware.koding.com/getSelDemo.html

于 2013-01-04T05:45:25.797 回答
0

尝试这个

var foo="yourstring";
var pos = foo.indexOf("Hello");
while(pos > -1) {
   document.write(pos + "<br />");
   pos = foo.indexOf("Hello", pos+1);
}

这是小提琴

于 2013-01-04T05:42:11.320 回答
0

我不确定为什么 indexOf 不适合你。同样为我工作。请检查下面的小提琴。

[HTML]

 <p id="demo">Click the button to locate where in the string a specifed value occurs.     </p>

 <input type="button" id="btn" value="click"/>

[脚本]

$('#btn').click(function(){

 var str="Hello world, hello to the universe.";
 var n=str.indexOf("hello");
  alert(n)
});

演示

于 2013-01-04T05:50:49.893 回答