gpt4 book ai didi

javascript - 如果 URL 与此匹配,则在打开 body 标签后插入脚本

转载 作者:行者123 更新时间:2023-12-02 18:14:24 25 4
gpt4 key购买 nike

我有一个像素脚本,我只想在特定页面上插入。由于我们糟糕的CMS,我无法将其添加到页面本身,但我可以将其添加到主模板ASP(我认为是ASP)文件中。我认为用 Javascript 来做这件事是最简单的。

现在我的头部有这个,但我不认为在头部打印像素脚本会起作用:

<script>
if (location.href.indexOf("http://site.com/page1") !== -1) {
document.write('<script src="yadayada" type="text/javascript"></script>');
}
</script>

最佳答案

<script>
if (location.href.indexOf("http://site.com/page1") !== -1) {
var script = document.createElement("script");
script.src="yadayada.js";
script.type="text/javascript";
script.onload=function(){
// callback after script loading is complete
// your script dependent code goes here
}
document.body.appendChild(script)
}
</script>

这是可以做到的

关于javascript - 如果 URL 与此匹配,则在打开 body 标签后插入脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19432974/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com