質問編集履歴
2
再度 加筆修正をしました。
title
CHANGED
File without changes
|
body
CHANGED
@@ -16,12 +16,15 @@
|
|
16
16
|
|
17
17
|
|
18
18
|
```HTML
|
19
|
+
固定ページのエディター内に以下HTMLコードを直接記述
|
20
|
+
|
19
21
|
<form action="https://go.xxx.com/~~~(Pardot側で指定されてるURLフォーム)" method="post">
|
20
22
|
|
21
23
|
〜〜中略〜〜
|
22
24
|
<textarea name="title" id="form-your-question"></textarea>
|
23
25
|
〜〜中略〜〜
|
24
26
|
|
27
|
+
<input type="submit" value="送信する" class="btn">
|
25
28
|
</form>
|
26
29
|
|
27
30
|
```
|
1
「静的なフォーム」の部分について追記をさせていただきました。
title
CHANGED
File without changes
|
body
CHANGED
@@ -12,8 +12,11 @@
|
|
12
12
|
これでname値:titleに自動でどのページからお問い合わせページに遷移したかを取得できますが、
|
13
13
|
今回は静的なフォームを利用することになり下記のような<form>タグを使うことになりました。
|
14
14
|
|
15
|
+
追記:静的なフォーム→MAツール(Pardot)を利用して作成したフォーム。
|
16
|
+
|
17
|
+
|
15
18
|
```HTML
|
16
|
-
<form action="https://
|
19
|
+
<form action="https://go.xxx.com/~~~(Pardot側で指定されてるURLフォーム)" method="post">
|
17
20
|
|
18
21
|
〜〜中略〜〜
|
19
22
|
<textarea name="title" id="form-your-question"></textarea>
|