HTML favicon won't show on google chrome

后端 未结 14 882
灰色年华
灰色年华 2020-11-27 16:28

I am making a HTML page that is unpublished . One of the things I wanted to do was add a favicon to appear next to the title. I\'m using google chrome and I noticed that oth

14条回答
  •  悲哀的现实
    2020-11-27 16:47

    This trick works: add this script in header or masterPage for Example

        var link = document.createElement('link');
        link.type = 'image/x-icon';
        link.rel = 'shortcut icon';
        link.href = '/favicon.png';
    

    and will be cached. It's not optimal, but it works.

提交回复
热议问题