我正在开发一个使用以下代码将变量传递到 iFrame 的项目:
jQuery(function() {
var search = window.location.search;
jQuery(".iframe-wrapper").attr("src", jQuery(".iframe-wrapper").attr("src")+search);
});
但是,当我通过§ion=P1
URL 时,它只会给出 404。
iFrame 的来源:example.com/page?cart=1
转到site.com/§ion=P1
iFrame 后应该更改为example.com/page?cart=1§ion=P1
无论如何要通过§ion=P1
URL?