我的变量被定义为休闲:
$("figure.entry-featured-media-boxed").each(function () {
var a_href = $(this).find('a').attr('href');
});
我想用meta填充元素的内容:fbimg
<meta property="og:image" name="fbimg" content="" />
可以这样做吗?
由于
答案 0 :(得分:0)
这应该可以解决问题:
$('meta[name=fbimg]').attr('content', a_href);
但是在每一个中这都是毫无意义的,因为每次循环遍历时都会覆盖该值......
您也可以查看:Is it possible to use javascript to change the meta-tags of the page?