9

在 jQuery 中,您可以这样做:

$("meta[property='fb:app_id']").attr("content");

这将为您提供带有属性“fb:app_id”的-tag的content属性值。metaproperty

我怎样才能用普通的 Javascript 做到这一点?

先感谢您。:-)

肯尼斯

4

3 回答 3

15

恐怕不如 JQuery 优雅......

var metaTags=document.getElementsByTagName("meta");

var fbAppIdContent = "";
for (var i = 0; i < metaTags.length; i++) {
    if (metaTags[i].getAttribute("property") == "fb:app_id") {
        fbAppIdContent = metaTags[i].getAttribute("content");
        break;
    }
}

console.log(fbAppIdContent);
于 2012-11-19T23:05:43.963 回答
13
document.querySelector('meta[property~="fb:app_id"][content]').content
于 2016-09-12T20:38:10.917 回答
3

注意:有些使用property属性:

<meta property="fb:app_id" content="1234567890">

而其他人使用该name属性:

 <meta name="fb:app_id" content="1234567890">

我使用以下内容从两个变体中获取值:

var appId = (function(c) { for (var a = document.getElementsByTagName("meta"), b = 0;b < a.length;b++) {
  if (c == a[b].name || c == a[b].getAttribute("property")) { return a[b].content; } } return false;
})("fb:app_id");

console.log(appId); //(bool)false if meta tag "fb:app_id" not exists.


同样的方法也可以用于所有其他元标记 - 只需更改闭包函数上的输入值(例如 fromfb:app_iddescription)。
编辑:或者作为更通用的功能:

function getContentByMetaTagName(c) {
  for (var b = document.getElementsByTagName("meta"), a = 0; a < b.length; a++) {
    if (c == b[a].name || c == b[a].getAttribute("property")) { return b[a].content; }
  } return false;
}

console.log(getContentByMetaTagName("og:title"));
于 2013-10-17T04:13:55.427 回答