从另一个框架刷新另一个框架。 jQuery

发布于 2024-11-28 10:53:32 字数 147 浏览 0 评论 0原文

是否可以重新加载用户来自的页面,或者更好的是,如果与 URL 匹配,则重新加载用户来自的框架?

我有一个链接。用户单击它,它会在新窗口中打开一个新网址。一个表单将在该新窗口中运行。我想要的是一个重新加载第一个窗口(用户来自哪里)的函数,

这可能吗?

Is it possible to reload the page, where the user came from or, even better, reload the frame the user came from, if it matches an URL?

I have a link. The user clicks it, and it opens in a new window, a new url. A form will run in that new window. What I want, is a function to reload the first window (Where the user came from)

Is that possible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

明媚殇 2024-12-05 10:53:33

如何在同一页面加载超链接 url,并在表单更新完成后将用户重定向到父页面。

How about loading the hyperlink url in the same page and redirect the user to the parent page after the form update is done.

静赏你的温柔 2024-12-05 10:53:32

好吧。这是您所做的(只是一个示例,经过测试,有效):

test.html

<frameset cols="50%, 50%">
<frame name="f1" src="frame1.html">
<frame name="f2" src="frame2.html">
</frameset>

frame1.html

<input type="button" name="test" value="Refresh" onclick="parent.f2.location.reload()"> 

frame2.html

<span>Hello World</span>

变量 parent 是当前框架的父级。

请阅读此页面。它真的很有帮助

希望有帮助

Alright. Here is what you do (just an example, tested, works):

test.html

<frameset cols="50%, 50%">
<frame name="f1" src="frame1.html">
<frame name="f2" src="frame2.html">
</frameset>

frame1.html

<input type="button" name="test" value="Refresh" onclick="parent.f2.location.reload()"> 

frame2.html

<span>Hello World</span>

variable parent is the parent of the current frame.

Read this page. its really helpful

Hope that helps

流绪微梦 2024-12-05 10:53:32

我认为如果你打开另一个窗口这是不可能的
但是,如果您只使用某种覆盖框架,例如 jqmodal

自述文件应该给出您需要的说明:http://dev.iceburg.net/jquery/jqModal/README

I think it is not possible if you open another window
It would however be possible if you just use some kind of overlaying frame like jqmodal

the README should give you the necessary instructions: http://dev.iceburg.net/jquery/jqModal/README

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