File size: 1,470 Bytes
4c64058
 
 
 
 
 
 
 
 
 
d775b11
4c64058
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e3d57b0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="ja">
<head>
  <meta charset="UTF-8">
  <title>HTMLを入力して新しいタブに表示</title>
</head>
<body>
  <h1>HTMLを入力して新しいタブに表示する</h1>
  
  <!-- HTML入力用テキストエリア -->
  <textarea id="htmlInput" rows="10" cols="50" placeholder="ここにHTMLを入力してください"><!DOCTYPE html><html lang="ja"><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Full Screen iFrame</title><style>html,body{margin:0;padding:0;overflow:hidden;width:100vw;height:100vh}</style><iframe src="https://soiz-cookie2.hf.space/" style="width:100vw;height:100vh;border:none;display:block;margin:0;padding:0"></iframe></textarea><br>

  <!-- ボタン -->
  <button onclick="openNewTabWithHTML()">新しいタブで表示</button>

  <script>
    function openNewTabWithHTML() {
      // 入力されたHTMLを取得
      const htmlContent = document.getElementById("htmlInput").value;

      // 新しいタブを開く
      const newTab = window.open("about:blank", "_blank");

      if (newTab) {
        // 新しいタブのドキュメントにHTMLを挿入
        newTab.document.open();
        newTab.document.write(htmlContent);
        newTab.document.close();
      } else {
        alert("新しいタブを開けませんでした。ポップアップブロッカーを無効にしてください。");
      }
    }
  </script>
</body>
</html>