大家看看,关于刷新页面
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了大家看看,关于刷新页面相关的知识,希望对你有一定的参考价值。
我想关闭一个页面的同时刷新另一个页面,请问大家该如何实现呀?请大家给一个可行的办法,谢谢
<script>function op()
newopen=window.open("post.php","0","0");
setInterval('wen()',10);
function wen()
if(newopen.closed)
window.location.reload();
</script>
<span style="CURSOR: hand" onclick='op()'><IMG SRC="img/post.gif" WIDTH="40" HEIGHT="20" BORDER=0 ALT="填写新的留言"></span>
关闭子窗口自动刷新父窗口
子窗口取父窗口: opener.xxxxxxxxxxxxxxx
父窗口取子窗口:window名.xxxxxxxxxxx 其中window名=window.open('index.htm') 参考技术A 在关闭的那个页面<body>中加句代码:
<body onunload="opener.location.reload()">
JQUERY关于无刷新页面
跪求一个JQUERY前台刷新的页面,要能链接后台数据的(DIV的不是TALBE的)
那就用ajax来请求后台数据,然后再把得到的数据在前端显示:
type: "POST",
url: "some.php",
data: "name=John&location=Boston",
success: function(msg)
alert( "Data Saved: " + msg );
);
在success中处理返回的数据。
亲 我要的是分页源码。。
以上是关于大家看看,关于刷新页面的主要内容,如果未能解决你的问题,请参考以下文章