文章列表
要实现从一个页面跳转到另一个页面去,把第一个页面自动关闭,
IE6的解决方式:
window.open(url, '_blank', 'top=0,left=0,width=1018px,resizable=yes,scrollbars=yes,toolbar=no,location=no,menubar=no,status=no');
window.opener = null;
window.close();
IE7的解决方式为:
window.open(url, '_blank','top=0,left=0,width=1018px,resizable=yes,scrollb ...
<c3p0-config>
<default-config>
<!--当连接池中的连接耗尽的时候c3p0一次同时获取的连接数。Default: 3 -->
<property name="acquireIncrement">3</property>
<!--定义在从数据库获取新连接失败后重复尝试的次数。Default: 30 -->
<property name="acquireRetryAttempts">30</property>
<!--两次连接 ...
common.js
/**
* 父画面锁定
*/
function lockParentWindow(){
var win = window.opener;
if (win) {
if (win.document.getElementById("mask")){
win.document.getElementById("mask").style.display = "";
}
}
}
/**
* 父画面解锁
*/
function unlockParentWindow ...