图像流和 Iframe

发布于 2024-12-07 03:35:46 字数 426 浏览 2 评论 0原文

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

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

发布评论

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

评论(1

不必在意 2024-12-14 03:35:46

在父页面上创建一个 JavaScript 函数,然后从 iFrame 调用该函数。

function openImage(url){
    // do your image handling stuff here
}

From the iFrame call the function:

parent.openImage(url);

ps: 我建议根本不要使用 iFrames,除非没有其他方法(大多数时候情况并非如此)

Create a JavaScript function on the parent page, and call that from the iFrame.

Something like

function openImage(url){
    // do your image handling stuff here
}

From the iFrame call the function:

parent.openImage(url);

ps: I recommend not using iFrames at all unless there is no other way (which most of the time is not the case)

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