如何制作一个弹出窗口,允许用户单击链接、关闭窗口并在第一个窗口中打开链接?
这几乎就是我想做的......
所以,用户正在浏览我的网站,他们单击“按类别查看”链接,该链接会打开一个弹出窗口,其中包含一系列图片,该链接指向我网站的不同部分。当用户单击其中之一时,我希望能够关闭弹出窗口并在原始窗口中打开链接。
有人可以帮忙吗?
This is pretty much what I want to do....
So, the user is browsing my site and they click on a "View by categories" link, this link opens a pop-up window with a series of pictures, that link to different parts of my site. When the user clicks one of those, I want to be able to close the pop-up window and open the link in the original window.
Can anyone help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
所以你的 HTML 是
为了打开一个弹出窗口,你可以使用相同的技巧:
而你的 HTML:
So your HTML is
For opening a popup you may use the same trick:
And your HTML:
由于弹出窗口拦截器,我不建议使用弹出窗口进行导航。使用一些文档内解决方案:
您可以使用 Fancybox jQuery 插件来实现此目的: http://fancybox.net/
它有将一堆 HTML 插入到弹出式窗口中的很酷的功能。
单击 fancybox 窗口中的链接后,文档将重新加载。
编辑:
和JS代码:
当然,您需要包含jQUery和jquery.fancybox JS脚本。
和额外的CSS代码:
编辑2
我的错误是fancybox内容默认不能隐藏,只能隐藏在容器中。经过这些更改后 fancybox 就可以工作了。
编辑3
尝试将JS代码更改为以下代码:
该脚本将在加载图像后执行。
I wouldn't recommend using pop-up for navigation because of pop-up blockers. Use some in-document solutions:
You can use Fancybox jQuery plugin for this: http://fancybox.net/
It has cool functionality to insert a bunch of HTML into its popup-style window.
After clicking a link in your fancybox window the document will reload.
EDIT:
and JS code:
You need to include jQUery and jquery.fancybox JS scripts of course.
and additional CSS code:
EDIT 2
My mistake was that fancybox content can't be hidden by default but only in a container. After these changes fancybox will work.
EDIT 3
Try to change JS code to this one:
The script will execute after loading images.