Is it possible to use JavaScript to change the meta-tags of the page?

后端 未结 18 1171
后悔当初
后悔当初 2020-11-22 14:14

If I put a div in the head and display:none, than use JavaScript to display it, will this work?

Edit:

I have stuff loaded in AJAX. And as my AJAX changes the

18条回答
  •  生来不讨喜
    2020-11-22 14:31

    You'd use something like (with jQuery):

    $('meta[name=author]').attr('content', 'New Author Name');
    

    But that would be mostly pointless as meta tags are usually only scraped when the document is loaded, usually without executing any JavaScript.

提交回复
热议问题