📄 reference.js
字号:
<script Language="JavaScript" type="text/javascript"><!--
// (1) pop up the reference form
function popup_master( tname, ww,hh,xx,yy )
{
if ( window.myMaster ) {
if ( !myMaster.closed ) {
myMaster.focus();
return false;
}
}
window.close();
myMaster = window.open('','master','scrollbars=yes,status=no,width='+ww+',height='+hh+',screenX='+xx+',top='+xx+',screenY='+yy+',left='+yy );
myMaster.location.href = "ref_" + tname + ".php";
return false;
}
// (2) standard pop up the reference form
function popup_master1( tblname, varname )
{
if ( window.myMaster ) {
if ( !myMaster.closed ) {
myMaster.focus();
return false;
}
}
window.close();
myMaster = window.open('','master','scrollbars=yes,status=no,width=560,height=520,screenX=10,top=10,screenY=10,left=10' );
myMaster.location.href = "master.php?TABLE1=" + tblname + "&VARIABLE1=" + varname;
return false;
}
</script>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -