前端开发2023年05月05日
百度可以通过基本html特征来判断是否适合无线端浏览:PC站:<meta name="applicable-device" content="pc"> 手机站:<meta name="applicable-device" content=&q...
前端开发2023年05月05日
1.页面自动刷新:把如下代码加入<head>区域中<meta http-equiv="refresh" content="20"> //其中20指每隔20秒刷新一次页面2.页面自动刷新js版<script language="JavaScr...
前端开发2023年05月02日
$(".body_box").append(result); //在被选元素的结尾插入指定内容 $(".body_box").prepend(result);//在被选元素的开关插入指定内容...