从文件中读取html并在关闭body标签之前追加?

时间:2016-06-28 14:35:50

标签: jquery

我有这个Twitter单事件网站标记代码。目前我已将其保存在html文档twitter-complete-registration-tag.html中,但我可以将其存储在任何位置。

<!-- Twitter single-event website tag code -->
<script src="" type="text/javascript"></script>
<script type="text/javascript"></script>
<noscript>
    <img height="1" width="1" style="display:none;" alt="" src="https://analytics.twitter.com/" />
    <img height="1" width="1" style="display:none;" alt="" src="" />
</noscript>
<!-- End Twitter single-event website tag code -->

如何使用jquery(或vanilla javascript)在</body> document之前插入此html?

1 个答案:

答案 0 :(得分:1)

使用jQuery,您必须使用.append()

文档:http://api.jquery.com/append/

$( "body" ).append( "<b>Some HTML</b>" );

尝试添加通过Ajax加载的内容:

我不是你的正确目的。以下是您如何解决任务的尝试:

$.ajax({
  url: "twitter-complete-registration-tag.html",
  dataType: "text", 
  success: function(response) {
     $( "body" ).append( response );
  }  
});