gpt4 book ai didi

javascript - 使用javascript加载iframe src

转载 作者:行者123 更新时间:2023-11-29 19:54:00 25 4
gpt4 key购买 nike

我正在使用以下代码为父 iframe 加载 iframe src。但它对我不起作用。

  var cur_iframeid = frameElement.id;
alert(cur_iframeid);//Parent iframe id
var value = "activity.aspx?id=Y&cust_id=" + cust_id + "&role_id=" + role +";
alert(value);
cur_iframeid.src = value;//Its not working.

最佳答案

您似乎想在框架元素 ID 上设置源...而不是框架元素...试试:

frameElement.src = value

document.getElementById(cur_iframeid).src = value

关于javascript - 使用javascript加载iframe src,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16605512/

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