欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

js自动识别显示url链接对应的网站ico图标

程序员文章站 2024-02-15 07:58:40
...

如图:

js自动识别显示url链接对应的网站ico图标

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>Document</title>
</head>
<body>
  <a href="http://www.baidu.com"></a>
  <a href="http://www.sogou.com"></a>
  <a href="http://www.zhihu.com"></a>
</body>
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script>
$("a").each(function(e){
    $(this).prepend("<img src=https://f.ydr.me/"+this.href.replace(/^(http:\/\/[^\/]+).*$/, '$1').replace( 'http://', '' )+">");
});
</script>
</html>