将光标置于 iframe 内容的末尾
我有一个 iframe,我想在其中使用 php 动态添加图像。 每个图像后面应该有一个换行符,以便添加的下一个图像添加到下一行中。添加换行符,但焦点始终保持在 iframe 内容的开头(它本应位于新添加的
标记的末尾)。 有没有一种方法可以使用适用于所有浏览器的 Javascript 将光标移动到 iframe 内容的末尾?
I have an iframe in which I want to add images dynamically with php.
Each image should be followed by a line break and so that the next image added to be added in the following row. The line break is added but the focus stays always at the beginning of the iframe content (when it should have been at the end of the newly added <br>
tag).
Is there a way to move the cursor to the end of the content of the iframe with Javascript which works with all browsers?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
设置scrollTop或调用scrollTo怎么样?
What about setting scrollTop or calling scrollTo?