質問編集履歴
4
タイトルの変更
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
HTMLフォームに
|
1
|
+
HTMLフォーム内でinputに入力したURLのWEBサイトをiframeを使用してリアルタイムで表示したい
|
test
CHANGED
File without changes
|
3
コード変更
test
CHANGED
File without changes
|
test
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
|
11
11
|
<tr><th class="fromtbltit"><label for="comapany" class="input1">貴社WEBサイトURL<span class="red_notes">*</span></label></th>
|
12
12
|
|
13
|
-
<td><input type="
|
13
|
+
<td><input type="url" name="corporate" class="inputt" placeholder="入力例:https://xxx.co.jp" id="corporate"><br><br>
|
14
14
|
|
15
15
|
<?php
|
16
16
|
|
2
コードの修正を行いました
test
CHANGED
File without changes
|
test
CHANGED
@@ -24,15 +24,13 @@
|
|
24
24
|
|
25
25
|
</tr>
|
26
26
|
|
27
|
+
</table>
|
28
|
+
|
27
29
|
<div class="align_c" style="text-align:center;">
|
28
30
|
|
29
31
|
<input type="submit" value="確認" class="submit" name="button" style="margin-left:0px;">
|
30
32
|
|
31
33
|
</div>
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
</table>
|
36
34
|
|
37
35
|
</form>
|
38
36
|
|
1
現在、立ち止まっている状態のコードの記載をいたしました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,5 +1,45 @@
|
|
1
1
|
フォームに入力したURLのWEBサイトのプレビューをリアルタイムでフォームの下部に表示したいのですが、何か方法はございますでしょうか。
|
2
|
+
|
3
|
+
下記に現在のコードを記載させていただきます。
|
4
|
+
|
5
|
+
```ここに言語を入力
|
6
|
+
|
7
|
+
<form action="partner_conf.php" method="post" onsubmit="return chkHissu(this)" name="myForm">
|
8
|
+
|
9
|
+
<table>
|
10
|
+
|
11
|
+
<tr><th class="fromtbltit"><label for="comapany" class="input1">貴社WEBサイトURL<span class="red_notes">*</span></label></th>
|
12
|
+
|
13
|
+
<td><input type="text" name="corporate" class="inputt" placeholder="入力例:https://xxx.co.jp" id="corporate"><br><br>
|
14
|
+
|
15
|
+
<?php
|
16
|
+
|
17
|
+
$corporate = "";
|
18
|
+
|
19
|
+
echo "<iframe src='".$corporate."' width='100%' height='400px'></iframe>";
|
20
|
+
|
21
|
+
?>
|
22
|
+
|
23
|
+
</td>
|
24
|
+
|
25
|
+
</tr>
|
26
|
+
|
27
|
+
<div class="align_c" style="text-align:center;">
|
28
|
+
|
29
|
+
<input type="submit" value="確認" class="submit" name="button" style="margin-left:0px;">
|
30
|
+
|
31
|
+
</div>
|
32
|
+
|
33
|
+
|
34
|
+
|
35
|
+
</table>
|
36
|
+
|
37
|
+
</form>
|
38
|
+
|
39
|
+
```
|
40
|
+
|
41
|
+
「$corporate」に値として「input」に入力したURLを代入して「iframe」で該当WEBサイトを表示する方法を試しているのですが、リアルタイムでの代入の方法が分からずに立ち止まっている状態です。
|
2
42
|
|
3
43
|
お分かりになられる方がいらっしゃいましたら、ご教授いただければ幸いでございます。
|
4
44
|
|
5
|
-
どうぞよろしくお願い申し上げま
|
45
|
+
どうぞよろしくお願い申し上げます。
|