一个人可以“抓取”的文本量是否有限制?使用 window.getSelection 或 document.selection.createRange()?
我似乎无法在任何地方找到此信息?
window.getSelection()
或 document.selection.createRange()
是否保存一组字符,或者它们可以保存无限/巨大的字符吗?
我正在制作一个小书签,想知道是否需要限制一份副本的文本数量。
I can't seem to find this info anywhere?
Do window.getSelection()
or document.selection.createRange()
hold a set # of characters or can they hold an infinite/huge #?
I am working on a bookmarklet and want to know if I need to restrict the amount of text one copies.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
除了网页大小的正常实际限制之外,没有任何限制。
There's no limit other than the normal practical limits in the size of a web page.