我正在寻找一种在提交信息后关闭灯箱窗口的方法。
现在,如果这还不够;我还希望有一个灯箱刷新它的父页面。
既然你知道我有多需要,我就展示一下我现在拥有的东西。
我的更新查询按钮的 JavaScript:
<script type='text/javascript'>
function close_and_refresh(){
//Reload The Parent Page
opener.location.reload();
//And then Close the Entry Page
close();
}
</script>
我分配的按钮:
<input type="submit" value="Update" onclick="close_and_refresh();" />
我认为它会起作用,但事实证明不是。如果有人知道这将如何实现,那就太好了。