我有这个动作标签需要在表单提交后出现在页面上:
<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>');