js自动识别显示url链接对应的网站ico图标
程序员文章站
2024-02-15 07:58:40
...
如图:
<!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>
上一篇: python打包exe文件出错解决方案