开发者

A Link Inside an iFrame That Pops Up "Photo Theater"

I have a tab with an iframe external web page that loads... 开发者_开发百科I would love a hyperlink inside that web page to link one of my photo albums in "theater" mode so you don't leave the page. However, any link I program inside that web page just brings in that photo album inside (not popped up and not in theater mode no matter if I have the &theater in the url).

Can I get some help on how to do this? Thanks!


this is a limitation of iframes in general. Less of a limitation and more of a security issue. As you said.. the iframe loads and external page - a page that could essentially come from anywhere. To protect the integrity of the site displaying this external page, the iframe can not access the page that contains it.

You might want to try opening a new window using javascript :

window.open ("{path_to_image}","title","menubar=1,resizable=1,width=350,height=250");

as you can see there are several options that you can set to customize the popup window.

Here is another link with some info about iframes

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜