我正在尝试从 html 文档中提取 Google 分析 ID。
我发现了以下功能:
function get_UA() {
txt = document.getElementById('scripttag').value;
var matches = txt.match(/(UA-[\d-]+)/);
if (matches[1]) {
alert(matches[1]);
}
}
但我收到这个错误:
TypeError:'null' 不是对象(评估'document.getElementById('scripttag').value')
有任何想法吗?