javascript.js
来自「电子商务网络购物系统」· JavaScript 代码 · 共 17 行
JS
17 行
function ForumJump(URL) {
if (URL.options[URL.selectedIndex].value != "") self.location.href = URL.options[URL.selectedIndex].value;
return true;
}
function openWin(theURL,winName,features) {
window.open(theURL,winName,features);
}
function OpenPreviewWindow(targetPage, formName){
now = new Date
openWin('','preview','toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=680,height=400')
formName.action = targetPage + "?ID=" + now.getTime();
formName.target = "preview";
formName.submit();
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?