我正在浏览具有以下脚本的Google跟踪代码管理器代码:
<script type="text/javascript">
document.getElementByID('my-stealthy-popup')style.display = 'block';
</script>
这是针对当前设置为此的div的id
:
<div id="my-stealthy-popup" style="width:500px;height:100px;border:1px solid #000;display:none;">This is a rectangle!</div>
似乎对div没有任何作用。我是在做错什么,还是不能通过GTM使用这样的JavaScript?
答案 0 :(得分:1)
实际上,您有2个语法错误,如下所示:
dot。在
中丢失 document.getElementByID('my-stealthy-popup')style.display = 'block';
更正为
document.getElementByID('my-stealthy-popup').style.display = 'block';
getElementByID
更正为 getElementById
这是正在运行的代码段
document.getElementById('my-stealthy-popup').style.display = 'block';
<div id="my-stealthy-popup" style="width:500px;height:100px;border:1px solid #000;display:none;">This is a rectangle!</div>