06
2019
12

“右转让左转”和 “左侧让右侧”这些让行规则 你能分的清吗?

又“让右”又“让左”这车究竟怎样开啊?

More...

05
2019
12

让HTML页面不缓存,每次都访问最新数据

方法一:在<head>标签里增加如下meta标签。

<meta http-equiv="Expires" content="0">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-control" content="no-cache">
<meta http-equiv="Cache" content="no-cache">

方法二:给请求的路径中加一个随机数。

function toURL(){
 var url="index.html"+"?a="+Math.random();
 window.open(url);
}
«1»