可能重复:
How do I get the information from a meta tag with javascript?
我有一个元标记,其中的内容可以填写在自定义页面上,我需要将内容作为JavaScript变量。
答案 0 :(得分:0)
http://www.webmasterworld.com/javascript/3224334.htm有示例代码,请参阅其讨论内容。
function getMetaContents(mn){
var m = document.getElementsByTagName('meta');
for(var i in m){
if(m[i][i].name == mn){
return m[i].content;
}
}
}