阅读下列说明,回答问题。 【说明】 某学生信息管理系统的网站后台管理主页如图4一1所示。 以下是该管理系统学生信息录入页面部分的html代码,请根据图4一1,从以下备选答案内为程序中(8)~(15)处空缺部分选择正确答案。 <h

admin2016-09-08  48

问题 阅读下列说明,回答问题。
【说明】
    某学生信息管理系统的网站后台管理主页如图4一1所示。

     以下是该管理系统学生信息录入页面部分的html代码,请根据图4一1,从以下备选答案内为程序中(8)~(15)处空缺部分选择正确答案。
    <html>
    <script language="JavaScript">
(8)check()
{
    if(forma.(9).value=="")
{
    alert("请输入学生姓名!");
    forma.name_xs.focus();
    return(10);
    }
......
    return(11);
    }
    </script>
    <form action=""method="post"(12)"return  check();">
    <table">
    <tr>
    <td height="21" colspan="2">[<strorig>添加学生信息</strong>]
    <font   color=”#0000FF"></font></t.d>
    </tr>
    <tr>
    <td width="19%" height="20">学生姓名:</tcl>
    <td width="8100"><input name="name_xs"type="一(13)"id="name_cnxdb"
    onkeydown="next()" ></td>
    </tr>
    <tr align="center">
    <td ><input type="(14)”value一”增加”>
    <input type="_(15)"value="重写"></td>
    </html>
(8)~(15)备选答案:
A.false
B.function
C.name_xs
D.onsubmit
E.true
F.reset
G.subnut
H.text

选项

答案(8)B (9)C (10)A (11)E (12)D (13)H (14)G (15)F

解析 其中,check()为函数名,所以可以判断(8)空应填写function,(9)~(11)空判别用户输入表单值的状况,(12)~(15)空是表单处理程序。所以该程序代码如下:
    <html>
    <script language="JavaScript">
    function  check()
{
    if(forma.___name xs___.value=="")
{
    alert("请输入学生姓名!");
    forma.name_xs.focus();
    return    false_;
    }
    return ___true___;
    }
    </script>
    <form action=""method="post"___onsubmit___="return  check();”>
    <table">
    <tr>
    <td height="21" colspan="2">[<strong>添加学生信息</strong>]
    <font color="#OOOOFF"></font></td>
    </tr>
    <tr>
    <td width="1900" height="20">学生姓名:</td>
    <td width="81%"><input name="name_xs" t1rloe="text  "id="name_cnxdb"
    onkeydown="next()" ></td>
    </tr>
    <tr align="center">
    <td ><input type=" submit" value="增加">
    <input type="reset"value="重写"></td>
...
    </html>
转载请注明原文地址:https://jikaoti.com/ti/65z7FFFM
0

最新回复(0)