⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 questionmanage.js

📁 本在线考试系统采用了面向对象的分析和设计
💻 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 + -