function initBaidu() { const hmScript = document.createElement('script'); hmScript.innerText = 'var _hmt = _hmt || [];\ (function() {\ var hm = document.createElement("script");\ hm.src = "https://hm.baidu.com/hm.js?726634b58f1e2630f85f3349b0421c8a";\ var s = document.getElementsByTagName("script")[0]; \ s.parentNode.insertBefore(hm, s);\ })();'; (document.documentElement.firstChild as ChildNode).appendChild(hmScript); } function initGoogle(gacode: string) { const hm = document.createElement('script'); hm.setAttribute('async', 'true'); hm.setAttribute( 'src', 'https://www.googletagmanager.com/gtag/js?id=' + gacode ); (document.documentElement.firstChild as ChildNode).appendChild(hm); const gaScript2 = document.createElement('script'); gaScript2.innerText = `window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);}gtag(\'js\', new Date());gtag(\'config\', \'${gacode}\');`; (document.documentElement.firstChild as ChildNode).appendChild(gaScript2); } export { initBaidu, initGoogle };