フォーム送信後にページに表示する必要がある次のアクション タグがあります。
<script>document.write('<s' + 'cript language="JavaScript" src="http://view.atdmt.com/jaction/***"></s' + 'cript>')</script><noscript><iframe src="http://view.atdmt.com/iaction/***" width="1" height="1" frameborder="0" scrolling="No" marginheight="0" marginwidth="0" topmargin="0" leftmargin="0"></iframe></noscript>
これをヘッダーに直接追加すると表示され、機能しているように見えますが、jQuery でこれを追加しようとすると、「view.atdmt.com からデータを転送しています」というメッセージが表示され、終わりのない空白の読み込み画面が表示されます。これは私の jQuery です (これをコンソールで実行すると、私が話していることがわかります):
$("head").append('<script>document.write(\'<s\' + \'cript language="JavaScript" src="http://view.atdmt.com/jaction/***"></s\' + \'cript>\')</script>' + '<noscript><iframe src="http://view.atdmt.com/iaction/***" width="1" height="1" frameborder="0" scrolling="No" marginheight="0" marginwidth="0" topmargin="0" leftmargin="0"></iframe></noscript>');