gpt4 book ai didi

javascript - iframe url 操作并添加为查询字符串

转载 作者:行者123 更新时间:2023-11-28 09:37:49 25 4
gpt4 key购买 nike

我有一个在 Perl 中运行的旧应用程序。我开发了一个 MVC 应用程序,仅使用一个 default.aspx。在 default.aspx 中,我放置了一个母版页和一个 iframe 来打开旧应用程序 url。我想做的是每次 iframe 尝试导航到下一页(我的意思是,在 iframe 内),我想捕获 default.aspx 中的 url 并将查询字符串添加到 iframe 的 src

示例:

在遗留应用程序中,首页是http://iframe.com/index.cgi。单击index.cgi中的链接,它会转到http://iframe.com/product.cgi

在我的 MVC 应用程序中,我将在 iframe 中打开“http://iframe.com/index.cgi?MyQueryString”。当我们单击 index.cgi 中的链接时,根据旧应用程序,它将尝试移动到 http://iframe.com/product.cgi。但我想将其设为“http://iframe.com/product.cgi?MyQueryString”

<小时/>

知道如何实现这一目标吗?

附注我不允许更改旧版 Perl 应用程序中的任何内容。我所能做的一切都应该只在 Default.aspx 中完成

最佳答案

我唯一能想到的就是做这样的事情:

<iframe id="perlIframe" src="http://yourPerlURLhere" onload="recordMe(this)"></iframe>​

然后,每次 iframe 加载新页面时,您都可以获取 srclocation.href ,如下所示:

function recordMe(a){    
console.log(a.src);

    console.log(a.location.href);

但是,如果这两个页面不在同一域中,您最终会遇到一些“同源”问题。

关于javascript - iframe url 操作并添加为查询字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12785560/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com