摘要:
reload、replace、href、assign、go(0)在做刷新使用时: window.location.reload(); window.location.replace(location.href); window.location.href=location.href;(注释:loca 阅读全文
摘要:
JavaScript 原型继承 阅读全文
摘要:
BLOB (binary large object),二进制大对象,是一个可以存储二进制文件的容器。在计算机中,BLOB常常是数据库中用来存储二进制文件的字段类型。BLOB是一个大文件,典型的BLOB是一张图片或一个声音文件,由于它们的尺寸,必须使用特殊的方式来处理(例如:上传、下载或者存放到一个数 阅读全文
摘要:
header("location:index.php"); window.location.href='index.php'; 阅读全文
摘要:
<td width="172" rowspan="2" align="center"><?php echo "<img src=\"$icon\">";?></td> 阅读全文
摘要:
Javascript刷新页面的几种方法:1 history.go(0)2 location.reload()3 location=location4 location.assign(location)5 document.execCommand('Refresh')6 window.navigate 阅读全文
摘要:
window.history.go(-1)返回且刷新页面 window.history.go(-1)返回且刷新页面 windows窗口对象(历史)history.go(),history.back(),history.forward()。 因为windows对象引用不是必须的。所以windows.h 阅读全文
摘要:
window.history.go(-1)和window.location.go(-1)的区别虽然都跑到上一页去了,但:window.history.go(-1) 是返回上一页window.location.go(-1) 是刷新上一页 加载中,请稍候...... 阅读全文
摘要:
function showNew() { var width=200; var height=200; var y=(window.screen.availHeight-200); var x=(window.screen.availWidth-200); var mywindow=window.o 阅读全文