Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 GWT 中,是否可以将光标位置设置为位置 (x,y) (top,left) ??
你指的是鼠标光标吗?如果是这样,浏览器不提供用于设置鼠标光标位置的 API。
如果您在谈论一个TextArea或类似小部件中的文本插入插入符号,您可以使用TextBoxBase.setCursorPos()将插入符号设置为文本中的特定偏移量。
TextArea
TextBoxBase.setCursorPos()
由于安全原因,在 JS 中无法设置鼠标光标。想一想进入一个突然开始为您移动鼠标的网站……并可能点击该网站上的广告。你会在浏览器中添加这样的功能吗?