使用jQuery更改元标记动态

前端之家收集整理的这篇文章主要介绍了使用jQuery更改元标记动态前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这些是我的元标记
<Meta property="og:image" content="assets/css/gfx/skold.png"/>
<Meta property="og:title" content="Den historie hjemmesiden for Norges Golfforbund"/>
<Meta property="og:description" content="Her finner du alle de historie tingene som har skjedd i Norges golfhistorie gjennom tidene" />
<Meta property="og:url" content="http://###"/>
<Meta property="og:site_name" content="Norges Golfklubb"/>
<Meta property="og:type" content="sport"/>

我试图用以下代码更改它们动态:

$("Meta[property=og:title]").attr("content",result.title);

但我不断收到语法错误,无法识别的表达式:[property = og:title]在Firebug。

使用最新版本的jQuery。有人知道我在做什么错了吗?

解决方法

我想你应该逃跑:看看 documentation
$("Meta[property='og\\:title']").attr("content",result.title);
原文链接:https://www.f2er.com/jquery/183840.html

猜你在找的jQuery相关文章