iframe问题中传递URL参数

问题描述 投票:0回答:1

ser使用浏览器转到http://yoursite.com/your-typeform-page?code=1,该页面需要添加一个URL为data-url = https://yoursite.typeform.com/to/U5aOQR?code=1的IFRAME >>

我想将url参数作为输入传递给iFrame。

<script>
 queryString = window.location.search;
var urlParams  = new URLSearchParams(queryString);
var code = urlParams.get('code')

 </script>

  <div class="typeform-widget" data-url="https://yoursite.typeform.com/to/U5aOQR?code"+ code 
 style="width: 100%; height: 500px;"></div>
<script> (function() { var qs,js,q,s,d=document,gi=d.getElementById, ce=d.createElement, gt=d.getElementsByTagName, id="typef_orm", b="https://embed.typeform.com/"; if(!gi.call(d,id)) { js=ce.call(d,"script"); js.id=id; js.src=b+"embed.js"; q=gt.call(d,"script")[0]; q.parentNode.insertBefore(js,q) } })() </script>

 </div>

基本上,我想从第4行传递代码的值以在第9行作为字符串输入。

谢谢您的时间和考虑。

ser使用浏览器转到http://yoursite.com/your-typeform-page?code=1,该页面需要添加一个IFRAME,其URL为data-url = https://yoursite.typeform.com/到/ U5aOQR?code = 1我想传递url ...

javascript jquery html url typeform
1个回答
0
投票

我认为您的问题是this question的重复。

© www.soinside.com 2019 - 2024. All rights reserved.