Changing meta-tags dynamic with jQuery

扶醉桌前 提交于 2019-11-27 00:03:39

问题


These are my meta-tags:

<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"/>

And I am trying to change them dynamic with the following code:

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

But I am keep getting Syntax error, unrecognized expression: [property=og:title] in Firebug.

Using the latest version of jQuery. Does anyone know what I am doing wrong?


回答1:


I think you should escape : look at the documentation

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



回答2:


$("meta[name='og:title']").attr('content', 'my new title');

Using "property=" does not work in Chrome




回答3:


Make sure your quotes are like this:

$('meta[property="og:description"]').attr('content',"$modified_desc" );



回答4:


You could give each meta element an ID or Class.

$('#metaelement').attr('content', 'my new meta description');


来源:https://stackoverflow.com/questions/7308970/changing-meta-tags-dynamic-with-jquery

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!