Skip to content

Instantly share code, notes, and snippets.

@manxisuo
Created January 30, 2026 12:52
Show Gist options
  • Select an option

  • Save manxisuo/db9884bc7eb5b4f039b7b13ddc8e2888 to your computer and use it in GitHub Desktop.

Select an option

Save manxisuo/db9884bc7eb5b4f039b7b13ddc8e2888 to your computer and use it in GitHub Desktop.
获取网站的favicon
function getFavicon() {
const link = document.querySelector("link[rel*='icon']");
return link ? link.href : '/favicon.ico';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment