我在分析网站上工作,我想为每个网站添加特定的分析器代码。是否可以检查用户是否使用自己的JavaScript代码?
是否有必要并且足以在每个JavaScript中放置客户代码并使用域名进行检查以确定这一点?或者我需要像会议这样的东西吗?
答案 0 :(得分:2)
您可以访问脚本代码的src
属性:
// returns all script tags
var all_script_tags = document.getElementsByTagName("script");
// returns the src attribute of the first script
var src_script = all_script_tags[0].src; // tag