Changing the value of OG:IMAGE with jQuery click

前端 未结 3 1379
长情又很酷
长情又很酷 2020-12-07 02:32

I just build up a image portfolio with a single HTML page where all the pictures are dynamically loaded. Everything works great so far, except for the facebook META OG:IMAGE

3条回答
  •  感情败类
    2020-12-07 03:11

    $('li.open-pic').click(function(){
     $('meta[name=og\\:image]').attr('content', newImageUrl);
    });
    

提交回复
热议问题