将URL参数传递给iframe到Typeform

时间:2016-12-15 04:07:27

标签: javascript php html wordpress typeform

我无法将网址参数传递到嵌入式iframe。

我不知道从哪里开始这么模糊的道歉!

我正在使用名为typeform的服务 - 它们允许您将自定义数据传递到Url,然后为查看它的人呈现。 I.e https://www.tutory.typeform/wtwtrew/firstname=xxxx

它们提供了一个嵌入代码,但我不知道如何动态地将“xxxx”传递给嵌入的代码。他们提供的代码如下:

"<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">

  <!--Add the title of your typeform below-->
  <title>RSVP</title>

   <!--CSS styles that ensure your typeform takes up all the available screen space (DO NOT EDIT!)-->
  <style type="text/css">
html{
margin: 0;
height: 100%;
overflow: hidden;
}
iframe{
position: absolute;
left:0;
right:0;
bottom:0;
top:0;
border:0;
}
</style>
</head>
<body>
<iframe id="typeform-full" width="100%" height="100%" frameborder="0" src="https://    
tutory.typeform.com/to/IbCGf9?firstname=xxxxx&lastname=xxxxx&organisation=xxxxx&position=xxxxx&salutation=xxxxx&contactnumber=xxxxx&email=xxxxx&embed=full"></iframe> 

<script type="text/javascript" src="https://s3-eu-west-1.amazonaws.com/share.typeform.com/embed.js"></script>
</body>
</html>

任何帮助都会非常棒!!

0 个答案:

没有答案