图像流和 Iframe
我正在使用 ImageFlow 9。我在 Iframe 中添加了一个 ImageFlow 滚动脚本。我想要在父页面上的 iframe 外部打开图像。现在它正在 Iframe 本身中打开图像。我应该在哪个文件中进行哪些更改?
有一个 .js 文件,其功能如下 -
image.onclick = function() { document.location = this.url; }
我需要在此处或在使用此代码的实际脚本中进行更改吗?
<img src="reflect.php?img=img/large1.jpg" longdesc="javascript:myLightbox.start('img/large1.jpg|Image 1');" alt="Image 1" />
I am using ImageFlow 9. I have an ImageFlow scroller script added in the Iframe. I want to have the images opened outside the iframe that is on the Parent page. Right now it is opening the images in the Iframe itself. What changes should I do and in which file?
There is a .js file that has a function as below -
image.onclick = function() { document.location = this.url; }
Do I need to make the changes here or in the actual script that uses this code-
<img src="reflect.php?img=img/large1.jpg" longdesc="javascript:myLightbox.start('img/large1.jpg|Image 1');" alt="Image 1" />
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在父页面上创建一个 JavaScript 函数,然后从 iFrame 调用该函数。
像
From the iFrame call the function:
ps: 我建议根本不要使用 iFrames,除非没有其他方法(大多数时候情况并非如此)
Create a JavaScript function on the parent page, and call that from the iFrame.
Something like
From the iFrame call the function:
ps: I recommend not using iFrames at all unless there is no other way (which most of the time is not the case)