还能请你回答这个问题吗?how do I get co-ordinates of selected text in an html using javascript document.getSelecttion()
谢谢
发布于 2010-04-09 14:12:08
您会收到错误消息Deprecated method document.getSelection() called。请改用window.getSelection()。“在火狐中,这意味着document.getSelection()是一个被弃用的方法。
Deprecated method document.getSelection()
window.getSelection()
document.getSelection()
https://stackoverflow.com/questions/2605381
相似问题