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(){
@echo offset llq=iexplore.exe
set t=5
for /f "tokens=*" %%i in ('dir/b *.html *.htm') do (
start "%%i"
ping -n 2 127.1>nul
taskkill /f /im %llq%
ping -n %t% 127.1>nul)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)