JQuery页面刷新
我正在用 PHP 开发一个简单的聊天界面。这是我的第一次尝试。我在输入聊天文本的底部和显示聊天文本的顶部使用 iframe。
在顶部 iframe 中设置元刷新 5 秒。因此,页面每 5 秒刷新一次并显示新文本。
我想摆脱元刷新,而是在提交底部 iframe 中的表单时刷新顶部 iframe。因此,顶部 iframe 仅在文本实际提交时刷新。
我可以用 JQuery 做到这一点吗?您能建议一个片段来帮助我开始吗?
谢谢你!
I am working on a simple chat interface in PHP. This is my first attempt. I am using iframes for bottom part where chat text is entered and top part where the chat text is displayed.
In the top iframe a set the meta refresh for 5 seconds. So every 5 seconds the page refreshes and displays the new text.
I would like to get rid of the meta refresh and instead refresh the top iframe when the form in the bottom iframe is submitted. So the top iframe is only refreshed when text is actually submitted.
Can I do this with JQuery? Can you suggest a snippet to get me started?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
文本输入表单的提交按钮:
主(聊天)页面:
Text enter form's submit button:
Main (chat) page:
我相信您只需在底部框架上设置一个名称:
然后在顶部框架中,您的表单将瞄准它:
然后,这应该将表单的内容发送到底部框架,然后底部框架将重新加载...
I believe you would just set a name on your bottom frame:
And then in your top frame, your form would target it:
This should then send the contents of your form to the bottom frame, which will then reload...
是的,只需设置刷新的 iframe 的 location.href 属性即可。
也许像
document.getElementBy("idOfIframe").location.href="相同,或者最后可能有随机时间"
可能该属性是 iframe.contentWindow.bla bla bla
无论如何希望这会有所帮助。
顺便说一句,这与 jQuery 无关
yeah, just set the location.href property of the refreshed iframe.
maybe something like
document.getElementBy("idOfIframe").location.href="same on, or maybe with random timestemp at the end"
possibly that the property is iframe.contentWindow.bla bla bla
anyway hope this helps.
btw, this has nothing to do with jQuery