无法使用jQuery获取元信息

时间:2014-10-01 19:24:22

标签: jquery

为什么在网站上我无法获得<meta>信息?

我正在使用:

$.find("meta[name='description']").attr("content");

获得:

<meta name="description" content="My description">

为什么我无法检索这些数据?

有什么想法吗?

感谢。

2 个答案:

答案 0 :(得分:2)

直接传递jQuery选择器并检索content属性的值,如下所示:

$('meta[name="description"]').attr("content");

答案 1 :(得分:1)

在头标记中找到它

 $("head").find("meta[name='description']").attr("content");