getdb.scp
来自「Perl写的CA认证程序」· SCP 代码 · 共 44 行
SCP
44 行
<!---
// -------------------------------------------------------
// Javascript 0.2 - OpenCA Software
//
// Copyright (c) by Massimiliano Pala and OpenCA group
// All rights Reserver
//
// -------------------------------------------------------
function do_ok() {
var tmp;
var sel, myInput;
myInput = document.forms[0].type;
sel = myInput.selectedIndex;
tmp = myInput.options[sel].value;
if( sel >= 0 ) {
parent.opener.document.forms[0].dataType.value =
myInput.options[sel].value;
parent.opener.document.forms[0].submit();
} else {
alert( "No selection Made");
parent.opener.document.forms[0].reset();
return false;
}
window.close();
}
function do_canc() {
window.close();
}
function init() {
focus();
}
// -->
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?