# 插入 tawk.to 小部件 JS 代码

**URL:** https://meta.discourse.org/t/insert-tawk-to-widget-js-code/63510
**Category:** Development
**Created:** [2017年五月28日 20:53 UTC](https://meta.discourse.org/t/insert-tawk-to-widget-js-code/63510 "2017-05-28T20:53:14Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![MikesCafe](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/mikescafe/32/188727_2.png) [@MikesCafe](https://meta.discourse.org/u/MikesCafe)
#### Post date: [2017年五月28日 20:53 UTC](https://meta.discourse.org/t/insert-tawk-to-widget-js-code/63510/1 "2017-05-28T20:53:15Z")

</div>

I try inserting the widget code vrom tawk.to according to the [instructions](https://www.tawk.to/knowledgebase/getting-started/adding-a-widget-to-your-website/)  
But inserting the code

```
<!--Start of Tawk.to Script-->
<script type="text/javascript">
var Tawk_API=Tawk_API||{}, Tawk_LoadStart=new Date();
(function(){
var s1=document.createElement("script"),s0=document.getElementsByTagName("script")[0];
s1.async=true;
s1.src='https://embed.tawk.to/589b3d0a55c2fd09f84ae094/default';
s1.charset='UTF-8';
s1.setAttribute('crossorigin','*');
s0.parentNode.insertBefore(s1,s0);
})();
</script>
<!--End of Tawk.to Script-->

```

in /body dosen’t work. Anybody have an idea why?

---

<div class="post-metadata">

### Author: ![dax](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/dax/32/244677_2.png) [@dax](https://meta.discourse.org/u/dax)
#### Post date: [2017年五月28日 21:40 UTC](https://meta.discourse.org/t/insert-tawk-to-widget-js-code/63510/2 "2017-05-28T21:40:38Z")

</div>

> [@MikesCafe](#):
>
> Anybody have an idea why?

Yep, wrong place. You need to insert the code in `<Head>` as the documentation said:

```
5. Paste the code into your websites HTML (just before the </body> tag)

```

…before the body tag (not in the body tag)

---

<div class="post-metadata">

### Author: ![system](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/system/32/443519_2.png) [@system](https://meta.discourse.org/u/system)
#### Post date: [2019年六月11日 23:25 UTC](https://meta.discourse.org/t/insert-tawk-to-widget-js-code/63510/3 "2019-06-11T23:25:42Z")

</div>



---

<div class="post-metadata">

### Author: ![sam](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/sam/32/102149_2.png) [@sam](https://meta.discourse.org/u/sam)
#### Post date: [2019年六月25日 01:16 UTC](https://meta.discourse.org/t/insert-tawk-to-widget-js-code/63510/4 "2019-06-25T01:16:38Z")

</div>


