JQuery页面刷新

发布于 2024-10-30 07:55:18 字数 252 浏览 0 评论 0原文

我正在用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

漫漫岁月 2024-11-06 07:55:18

文本输入表单的提交按钮:

$("#submit").click(function(){
    window.parent.reloadMsgs();
});

主(聊天)页面:

var reloadMsgs = function(){
    chatFrame = $("#chat_iframe")[0];
    chatFrame.src = chatFrame.src;
};

Text enter form's submit button:

$("#submit").click(function(){
    window.parent.reloadMsgs();
});

Main (chat) page:

var reloadMsgs = function(){
    chatFrame = $("#chat_iframe")[0];
    chatFrame.src = chatFrame.src;
};
⊕婉儿 2024-11-06 07:55:18

我相信您只需在底部框架上设置一个名称:

<iframe name='myFrame'></iframe>

然后在顶部框架中,您的表单将瞄准它:

<form method='post' id='myForm' target='myFrame'>
 ...
</form>

然后,这应该将表单的内容发送到底部框架,然后底部框架将重新加载...

I believe you would just set a name on your bottom frame:

<iframe name='myFrame'></iframe>

And then in your top frame, your form would target it:

<form method='post' id='myForm' target='myFrame'>
 ...
</form>

This should then send the contents of your form to the bottom frame, which will then reload...

横笛休吹塞上声 2024-11-06 07:55:18

是的,只需设置刷新的 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文