这些是我的元标记:
<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);