有人知道如何获取字符在其父标签给定位置的偏移量吗?

发布于 2024-10-11 22:04:53 字数 208 浏览 1 评论 0原文

朋友们。我想做这样的事情:网页中的一个DIV包含一些文本,例如,Hi,hello world,并且页面的位置(100,100)指向字符'e'。我不这样做需要它是哪个字符,但它的偏移量,即“e”在整个句子“Hi,hello world”中所处的位置(这是其父标签DIV的内容)。在本例中,偏移量为4 'H' 代表 1,'i' 代表 2,',' 代表 3,依此类推。

任何人都可以帮助我吗?

friends.I'd like to do something like this: A DIV in a web page contains some text,for example ,Hi,hello world ,and the position(100,100) of the page point to the char 'e'.I do not need which char it is but the offset of it,which means the place that 'e' stands in the whole sentense 'Hi,hello world'(Which is the content of its parent tag DIV).In this example,the offset is 4. 'H' for 1,'i' for 2,','for 3 and so forth.

Any one can help me?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不忘初心 2024-10-18 22:04:53

一个例子:

var my_car="Ferrari";
var where_is_a=my_car.indexOf('a');
alert('The a is at position '+where_is_a+'.');

An example:

var my_car="Ferrari";
var where_is_a=my_car.indexOf('a');
alert('The a is at position '+where_is_a+'.');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文