📄 questionmanage.js
字号:
// JScript 文件
function OpenAddWindow()
{
var ID=document.getElementById("EditTreeView1_ID");
chapterId=ID.value;
if(chapterId=="")
{
alert("请选择章节");
return;
}
typeDD=document.getElementById("questionTypeDD");
hardDD=document.getElementById("hardDD");
hard=hardDD.options[hardDD.selectedIndex].value;
type=typeDD.options[typeDD.selectedIndex].value;
window.open(type+".aspx?Action=Add&ChapterId="+chapterId+"&Hard="+hard,"NewQuestion","width=500,height=500,scrollbars=yes,resizable=yes");
}
//hanjie
function ShowMaintainWindow(QuestionType,Action,QuestionId)
{
window.open(QuestionType+".aspx?Action="+Action+"&QuestionId="+QuestionId,"NewQuestion","width=500,height=500,scrollbars=yes,resizable=yes");
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -