html能不能关闭浏览器"缓存

html能不能关闭浏览器"缓存,第1张

就这句,对的,每次刷新都强制从服务器上重新载入网页

meta http-equiv=Cache-Control content=no-cache />

你是不是想要网页的图片什么都不被保存到本地缓存目录?那个暂时不可能,目前所有浏览器都做不到。

第一种:JS定时自动关闭窗口

<script language="javascript"><!--function closewin(){self.opener=null

self.close()}function clock()(){i=i-1document.title="本窗口将在" + i + "秒后自动关闭!"

if(i>0)setTimeout("clock()()",1000)

else closewin()}var i=10clock()()//--></script>第二种:点击链接没有提示的JS关闭窗口

<a href="javascript:window.close()" >关闭窗口</a>

第三种:窗口没有提示自动关闭的js代码

<script language=javascript><!--this.window.opener = null

window.close()//--></script>IE6-7 JS关闭窗口不提示的方法方法一:js 代码function CloseWin() //这个不会提示是否关闭浏览器{window.opener=null

//window.opener=top

window.open("","_self")

window.close()}方法二:open.htmljs 代码function open_complex_self() {

var obj_window = window.open('close.html', '_self')

obj_window.opener = window

obj_window.focus()}close.htmljs 代码window.close()另附://普通带提示关闭

function closeie(){

window.close()}//关闭IE6不提示

function closeie6(){

window.opener=null

window.close()}//关闭IE7不提示

function closeie7(){

1。保存浏览的网站的网页

1。1 右击网页空白处,选择添加到收藏夹。

1。2 点击工具栏的 我的最爱, 添加进收藏夹

2。保存自己创建的网页

1, 文件名一定要是 xxx.htm 或者 xxx.html

2. 保存类型一定要是 Text Document *.txt

3, 保存为Unicode

例如 你的网页叫shit 那么

保存为

1, shit.htm 或者 shit.html

2. Text Document *.txt

3,Unicode

点击保存,你就可以看见你的文件了,是一个IE icon.


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/7014597.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-31
下一篇 2023-03-31

发表评论

登录后才能评论

评论列表(0条)

保存