gpt4 book ai didi

javascript - 通过 jQuery 通过内部按钮更改 iFrame 的页面

转载 作者:行者123 更新时间:2023-11-28 01:48:01 26 4
gpt4 key购买 nike

您好,我的 default.vbhtml 页面下有这两个 iFrame,代码是:

<iframe class="iFrameLeft" src="Page_RequestPane.vbhtml"></iframe>
<iframe class="iFrameRight" src="Page_SKUSetup.vbhtml"></iframe>

我想要做的是,当我选择经销商并单击“复制 SKU 设置”按钮时,iFrame(SKU 设置通用)将更改为不同的页面。我的最终目标 iframe 是:

<iframe class="iFrameLeft" src="Page_RequestPane.vbhtml"></iframe>
<iframe class="iFrameRight" src="Page_Reseller.vbhtml"></iframe>

我所拥有的只是 jQuery 上的这个,但它是错误的:

$(document).ready(function () {
$("button").click(function () {
$('iframe').attr('src', 'Page_Reseller.vbhtml');
return false;
});
});

最佳答案

如果您只是尝试更改 iFrameRight 您的 jQuery 选择器应该是 $('.iFrameRight')

我对您的代码进行了一些修改。您可以在下面看到它。

   $(document).ready(function () {
$("button").click(function () {
$('.iFrameRight').attr('src', 'Page_Reseller.vbhtml');
return false;
});
});

关于javascript - 通过 jQuery 通过内部按钮更改 iFrame 的页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20056600/

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