没有!
vbscript才有!
给分点击主题后的管理输入分数和密码确定就可以了!

解决方案 »

  1.   

    没有。但是可以自己做一个类似的。下面给你一个例子:
    index.htm
    ==============
    <script>
    function ask()
    {
     var result=showModalDialog("ask.htm", "", "dialogWidth:15em; dialogHeight:8em; status:0");
     switch(result)
     {
        case "yes":word.value="Yes selected";
         break;
        case "no":word.value="No selected";
         break;
        case "cancel":word.value="Cancel selected";
         break;
     }
    }
    </script>
    <input type=button OnClick="ask()" value="Press Here">
    <input type=text name=word>ask.htm
    ================
    <body bgColor=menu>
    <table width=100% height=100% border=0 cellpadding=10>
    <tr><td align=center>
    Which one do you want to choose?
    </td></tr>
    <tr><td align=center>
    <input type=button value=' Yes ' OnClick="window.returnValue='yes';window.close()">
    <input type=button value=' No ' OnClick="window.returnValue='no';window.close()">
    <input type=button value=' Cancel ' OnClick="window.returnValue='cancel';window.close()">
    </td></tr>
    </body>