1

我正在开发一个使用以下代码将变量传递到 iFrame 的项目:

jQuery(function() {
    var search = window.location.search;
    jQuery(".iframe-wrapper").attr("src", jQuery(".iframe-wrapper").attr("src")+search);
});

但是,当我通过&section=P1URL 时,它只会给出 404。

iFrame 的来源:example.com/page?cart=1

转到site.com/&section=P1iFrame 后应该更改为example.com/page?cart=1&section=P1

无论如何要通过&section=P1URL?

4

1 回答 1

1

请发送您的 HTML,因为我的 HTML 可以正常使用以下内容:

  <iframe width="500" height="200" class="iframe-wrapper" src="http://www.google.com?param=1"></iframe>
    <script type="text/javascript">
     $(function() {
    var search = window.location.search;
    search = search.replace("?","&");

    $(".iframe-wrapper").attr("src", $(".iframe-wrapper").attr("src")+search);
    });
    </script>
于 2013-07-22T09:54:29.927 回答