给网站的底部侧边栏上加个显示百度收录精准数量。
本站底部 可自行查看浏览效果,喜欢的站长上!
emlog用户 第一:可以在模板文件module.php 加上代码
jq代码如下
var urlHost = window.location.host;
$.ajax({ url: 'https://api.btstu.cn/bdics/api.php', type: 'get', dataType: 'json', data:{ domain: urlHost
}, success:function(ret){ if (ret.code == '200'){
$('.bdsl').html('<a href="http://www.baidu.com/s?wd=site:'+urlHost+'" target="_blank"><i class="fa fa-paw" aria-hidden="true"></i> 百度收录'+ret.num+'条</a>');
}else{
alert('请求有误!');
}
}, error:function(){
再把这段代码放到要显示的位置
<div class="bdsl"></div>