我尝试了解广告投放脚本如何读取给定参数:
<ins data-revive-zoneid="4" data-revive-id="224492f55da08gg67b9eegh3006534r1"></ins>
<script async src="/www/delivery/asyncjs.php"></script>
此代码来自Revive Ad服务器。 我试着查看asyncjs.php文件 - 但我无法找到,脚本如何读取参数,如 data-revive-zoneid 和 data-revive-id
有人可以解释一下,这是怎么回事?我需要尝试为新的项目构想开发类似的解决方案。
感谢。
答案 0 :(得分:0)
好asyncjs.php
虽然命名为php,但会输出JavaScript,其中包含以下元素:
var element = document.querySelector('ins[data-revive-id]');
console.log( element.getAttribute('data-revive-id') );
console.log( element.getAttribute('data-revive-zoneid') );