📄 showdialogexample.js.bak
字号:
var sUserName="";
var child;
function fnCallDialog()//打开页面对话框
{
if(child==null)
{child=showModelessDialog("../yemian/myDialog.htm",window,"status:no;scroll:no;dialogWidth:300px;dialogHeight:300px");}
}
function fnUpdate()
{
oName.innerText = sUserName;
}
//页面没打开将重新打开,若打开则经行修改
function change(){
if(child==null){child=showModelessDialog("../yemian/myDialog.htm",window,"status:no;scroll:no;dialogWidth:300px;dialogHeight:300px");
child.top.content.value=document.getElementById("oName").innerText;
}
else{child.top.content.value=document.getElementById("oName").innerText;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -