2.

Form submission canceled because the form is not connected

ページの作成
テンプレートを更新

ページの作成

親となるページを選択してください。

ページは必ず何かしらの親ページに紐づきます。
親ページに紐づくページを子ページといいます。
例: 親=スポーツ, 子1=サッカー, 子2=野球

子ページを親ページとして更に子ページを作成することも可能です。
例: 親=サッカー, 子=サッカーのルール

親ページはいつでも変更することが可能なのでとりあえず作ってみましょう!

エラー内容

Form submission canceled because the form is not connected

 

発生条件/原因

OSがChromeの場合、bodyタグ内にformを記載せずsubmitすると上記のエラーが発生する。

 

対処法

body内にformを記載する。

    var form = document.createElement('form');

    form.method = 'POST';

    form.action = ' ... 略 ... ';

    $("body").append(form);

    form.submit();

 

子ページ
子ページはありません
同階層のページ
  1. Uncaught TypeError: Illegal invocation
  2. Form submission canceled because the form is not connected
  3. Uncaught TypeError: location.href is not a function
  4. Access to XMLHttpRequest at 'url1' from origin 'url2' has been blocked by CORS policy
  5. Uncaught TypeError: Cannot read properties of null (reading 'addEventListener')

最近コメントのあったページ

最近の質問

コメント一覧

コメントがありません

ログインしなければコメント投稿はできません。