admin 管理员组

文章数量: 887021


2023年12月18日发(作者:怎么对json数据进行数据解)

复习题

一、选择题

1、写“Hello World”的正确javascript语法是 (A)

A. ("Hello World")

C. ("Hello World")

2、JS特性不包括( D )

A.解释性 B.用于客户端 C.基于对象

(A)

i=0 then

( D )

D.面向对象

B. "Hello World"

D. ("Hello World")

3、下列JS的判断语句中( )是正确的

(i==0) (i=0) i==0 then

4、下列JavaScript的循环语句中( )是正确的

(i<10;i++)

i=1 to 10

(i=0;i<10)

(i=0;i<=10;i++)

( B )

B.(4>=4)&&(5<=2)

D.(2<3)||(3<2)

)不是网页中的事

5、下列的哪一个表达式将返回假

A.!(3<=1)

C.(“a”==”a”)&&(“c”!=”d”)

6(D)

、下列选项中,( 件

7、有语句“var x=0;while(____) x+=2;”,要使while循环体执行10次,空白处的循环( C )

A.x<10

8( B )

var a1=10;

1

B. x<=10

、 <20 <=20

JS语判定式应写为:

var a2=20;

alert(“a1+a2=”+a1+a2)

将显示( )结果

+a2=30 +a2=1020 +a2=a1+a2

9、将字串s中的所有字母变为小写字母的方法是 ( B)

( C )

、以下( )表达式产生一个0~7之间(含0,7)的随机整数.

. floor()*8)

11、产生当前日期的方法是 ( C )

(); () Date() Now()

12、如果想在网页显示后,动态地改变网页的标题 ( C )

A.是不可能的 B.通过(“新的标题内容”)

C. 通过=(“新的标题内容”)

D. 通过(“新的标题内容”)

13、某网页中有一个窗体对象,其名称是mainForm,该窗体对象的第一个元素是按钮,其名称是myButton,表述该按钮对象的方法( B )

D.以上都可以

14、HTML文档的树状结构中,()标签为文档的根节点,位于结构中的最顶层。 ( A )

A.B.C.D. </p><p style="text-indent: 2em;";>12 </p><p style="text-indent: 2em;";>5、在HTML页面中,CSS样式的属性名为background-image对应的style对象的属性名是(B) </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>16、在使用Javascript实现省市级联菜单功能时,在添加城市列表前清空原来的下拉选项的代码是(C) </p><p style="text-indent: 2em;";> 、HMTL表单的首要标记是<form>,<form>标记的参数method表示表单发送的方法,可能为get或post,下列关于get和post的描述正确的是(D) </p><p style="text-indent: 2em;";>方法传递的数据对客户端是不可见的 </p><p style="text-indent: 2em;";>请求信息以查询字符串的形式发送,查询字符串长度没有大小限制 </p><p style="text-indent: 2em;";>方法对发送数据的数量限制在255个字符之内 </p><p style="text-indent: 2em;";>方法传递的数据对客户端是不可见的 </p><p style="text-indent: 2em;";>18、在DOM对象模型中,下列选项中的()对象位于DOM对象模型的第二层。(选择二项) (AB) </p><p style="text-indent: 2em;";>A.history </p><p style="text-indent: 2em;";>19、在HTML文档对象模型中,history对象的()用于加载历史列表中的下一个URL页面。 </p><p style="text-indent: 2em;";>3 </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>( C ) </p><p style="text-indent: 2em;";>A.next() () () (-1) </p><p style="text-indent: 2em;";>20、在Javascript中要改变页面文档的背景色,需要修改document对象的()属性。 </p><p style="text-indent: 2em;";>( C ) </p><p style="text-indent: 2em;";>A.BackColor </p><p style="text-indent: 2em;";>21、在HTML页面中,不能与onChange事件处理程序相关联的表单元素有(D) </p><p style="text-indent: 2em;";>A.文本框 B.复选框 C.列表框 D.按钮 </p><p style="text-indent: 2em;";>22、在HTML页面上编写Javascript代码时,应编写在()标签中间。 (B) </p><p style="text-indent: 2em;";>A.<javascript>和</javascript> B.<script>和</script> C. <head>和</head> D. </p><p style="text-indent: 2em;";><body>和</body> </p><p style="text-indent: 2em;";>23、在Javascript浏览器对象模型中,window对象的()属性用来指定浏览器状态栏中(A) </p><p style="text-indent: 2em;";>A.status </p><p style="text-indent: 2em;";>24、编写Javascript函数实现网页背景色选择器,下列选项中正确的是(B) </p><p style="text-indent: 2em;";> change(color){ </p><p style="text-indent: 2em;";> =color; </p><p style="text-indent: 2em;";>} </p><p style="text-indent: 2em;";>B. function change(color){ </p><p style="text-indent: 2em;";> =color; </p><p style="text-indent: 2em;";>} </p><p style="text-indent: 2em;";>C. function change(color){ </p><p style="text-indent: 2em;";> =color; </p><p style="text-indent: 2em;";>} </p><p style="text-indent: 2em;";>D. function change(color){ </p><p style="text-indent: 2em;";> =color; </p><p style="text-indent: 2em;";>4 </p><p style="text-indent: 2em;";>显示的临时消息。 </p><p style="text-indent: 2em;";>} </p><p style="text-indent: 2em;";>25、在Javascript中,可以使用Date对象的()方法返回一个月中的每一天。 </p><p style="text-indent: 2em;";>(A) </p><p style="text-indent: 2em;";>A.getDate </p><p style="text-indent: 2em;";>26、在Javascript中,对于浏览器对象的层次关系理解正确的是()(选择二项) </p><p style="text-indent: 2em;";>(AD) </p><p style="text-indent: 2em;";>对象是所有页面内容的根对象 </p><p style="text-indent: 2em;";>对象包含location对象和history对象 </p><p style="text-indent: 2em;";>对象包含history </p><p style="text-indent: 2em;";>对象包含form对象 </p><p style="text-indent: 2em;";>27、下列选项中关于浏览器对象的说法错误的是( C ) </p><p style="text-indent: 2em;";>对象记录了用户在一个浏览器中已经访问过的URLs </p><p style="text-indent: 2em;";>对象相当于IE浏览器中的地址栏,包含关于当前URL地址的信息 </p><p style="text-indent: 2em;";>对象是history对象的父对象 </p><p style="text-indent: 2em;";>对象是window对象的子对象 </p><p style="text-indent: 2em;";>28、在HTML页面中包含一个按钮控件mybutton,如果要实现点击该按钮时调用已定义的Javascript函数compute,要编写的HTML代码是(D) </p><p style="text-indent: 2em;";>A.<input name=”mybutton” type=”button” onBlur=”compute()”value=”计算”> </p><p style="text-indent: 2em;";>B.<input name=”mybutton” type=”button” onFocus=”compute()”value=”计算”> </p><p style="text-indent: 2em;";>C.<input name=”mybutton” type=”button” onClick=”function </p><p style="text-indent: 2em;";>compute()”value=”计算”> </p><p style="text-indent: 2em;";>D.<input name=”mybutton” type=”button” onClick=”compute()”value=”计算”> </p><p style="text-indent: 2em;";>29、分析下面的Javascript代码段,输出结果是(C) </p><p style="text-indent: 2em;";>var mystring=”I am a student”; </p><p style="text-indent: 2em;";>5 </p><p style="text-indent: 2em;";>var a=(9,13); </p><p style="text-indent: 2em;";>(a); </p><p style="text-indent: 2em;";>A.stud </p><p style="text-indent: 2em;";>30、Javascript中制作图片代替按钮的提交效果需要手动提交方法submit(),以下调用正确的是(C) </p><p style="text-indent: 2em;";>(); 、在HTML页面中包含如下所示代码,则编写Javascript函数判断是否按下键盘上的回车键正确的编码是(C) </p><p style="text-indent: 2em;";><input name=”password” type=”text” onkeydown=”myKeyDown()”> </p><p style="text-indent: 2em;";>A. function myKeyDown(){ </p><p style="text-indent: 2em;";>if ==13) </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>B. </p><p style="text-indent: 2em;";>alert(“你按下了回车键”); </p><p style="text-indent: 2em;";>function myKeyDown(){ </p><p style="text-indent: 2em;";>if ==13) </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>C. </p><p style="text-indent: 2em;";>alert(“你按下了回车键”); </p><p style="text-indent: 2em;";>function myKeyDown(){ </p><p style="text-indent: 2em;";>if ==13) </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>D. </p><p style="text-indent: 2em;";>alert(“你按下了回车键”); </p><p style="text-indent: 2em;";>function myKeyDown(){ </p><p style="text-indent: 2em;";>if (keyCode==13) </p><p style="text-indent: 2em;";> alert(“你按下了回车键”); </p><p style="text-indent: 2em;";>32、如果在HTML页面中包含如下图片标签,则选项中的()语句能够实现隐藏该图片的(D) </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>、如果在HTML页面中包含如下图片标签,则在下划线处添加()代码能够实现隐藏该图片的功能。 ( D ) </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>6 </p><p style="text-indent: 2em;";>功能。 </p><p style="text-indent: 2em;";>A. style=”display:visible”; </p><p style="text-indent: 2em;";>B. style=”display:disvisible”; </p><p style="text-indent: 2em;";>C. style=”display:block”; </p><p style="text-indent: 2em;";>D. style=”display:none”; </p><p style="text-indent: 2em;";>34、下列选项中,()段HTML代码所表示的“返回”链接能够正确实现IE工具栏中“后退”按钮的功能。(选择二项) (AD) </p><p style="text-indent: 2em;";>A. <a href=”javascript:(-1)”>返回</a> </p><p style="text-indent: 2em;";>B. <a href=”javascript:()”>返回</a> </p><p style="text-indent: 2em;";>C. <a href=”javascript: location go(-1)”>返回</a> </p><p style="text-indent: 2em;";>D. <a href=”javascript:()”>返回</a> </p><p style="text-indent: 2em;";>35、在HTML文档中包含如下超链接,要实现当鼠标移入该链接时,超链接文本大小变为30px,选项中的编码正确的是(C) </p><p style="text-indent: 2em;";>A.<a href=”#” onmouseover=”注册</a> </p><p style="text-indent: 2em;";>B.<a href=”#” onmouseout=”注册</a> </p><p style="text-indent: 2em;";>C.<a href=”#” onmouseover=”注册</a> </p><p style="text-indent: 2em;";>D.<a href=”#” onmouseout=”注册</a> </p><p style="text-indent: 2em;";>36、在HTML页面上,当按下键盘上的任意一个键时都会触发Javascript的()事件。 </p><p style="text-indent: 2em;";>( D ) </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>37、在HTML页面中,定义了如下所示的Javascript函数,则正确调用该函数的HTML代码是(选择二项) (AB) </p><p style="text-indent: 2em;";>function compute(op){ </p><p style="text-indent: 2em;";>alert(op); </p><p style="text-indent: 2em;";>} </p><p style="text-indent: 2em;";>A.<input name=”a” type=”button” onclick=”compute” value=”+”> </p><p style="text-indent: 2em;";>B.<input name=”b” type=”button” </p><p style="text-indent: 2em;";>7 </p><p style="text-indent: 2em;";>onclick=”compute(‘-‘)” </p><p style="text-indent: 2em;";>value=”-”> </p><p style="text-indent: 2em;";>C.<input </p><p style="text-indent: 2em;";>value=”*”> </p><p style="text-indent: 2em;";>D.<input name=”d” type=”button” onclick=”compute(/ )” value=”/”> </p><p style="text-indent: 2em;";>38、在HTML页面上包含如下创建层的语句,那么编写Javascript语句实现显示该层的语句错误的是(D) </p><p style="text-indent: 2em;";><html> </p><p style="text-indent: 2em;";><body> </p><p style="text-indent: 2em;";><div id=”imageLayer” style=”display:none;”> </p><p style="text-indent: 2em;";></div> </p><p style="text-indent: 2em;";></body> </p><p style="text-indent: 2em;";><html> </p><p style="text-indent: 2em;";>A. (“div”)[0].=”block” </p><p style="text-indent: 2em;";>、分析下面的Javascript代码段,输出结果是(C) </p><p style="text-indent: 2em;";>var s1=parseInt(“101中学”); </p><p style="text-indent: 2em;";>(s1); </p><p style="text-indent: 2em;";>A. NaN 中学 D.出现脚本错误 </p><p style="text-indent: 2em;";>40、在HTML中,点击图片””上的超级链接后页面将加载历史列表中的上一个URL页面。代码如下所示,应在下划线处填入(A) </p><p style="text-indent: 2em;";><a href=_________></a> </p><p style="text-indent: 2em;";>A.”javascript:(-1)”; B. “(1)” C. “(-1)” D. “javascript:(1)” </p><p style="text-indent: 2em;";>41、在HTML页面上包含如下所示的层对象,则javascript语句(“info”).innerHTML的值是(A) </p><p style="text-indent: 2em;";><div id=”info” style=”display:block”><p>请填写</p></div> </p><p style="text-indent: 2em;";>A.请填写 B.<p>请填写</p> =”info” style=”display:block” </p><p style="text-indent: 2em;";>D.<div id=”info” style=”display:block”><p>请填写</p> </p><p style="text-indent: 2em;";>8 </p><p style="text-indent: 2em;";>name=”c” type=”button” onclick=”compute(“*”)” </p><p style="text-indent: 2em;";>42、以下哪条语句会产生运行错误(A) </p><p style="text-indent: 2em;";> = ( ); = [ ]; = </p><p style="text-indent: 2em;";>{ }; obj =/ /; </p><p style="text-indent: 2em;";>二、阅读程序写结果 </p><p style="text-indent: 2em;";>1、function replaceStr(inStr, oldStr, newStr){ </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>var rep = inStr; </p><p style="text-indent: 2em;";>while (oldStr) > -1) </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> { </p><p style="text-indent: 2em;";>rep = (oldStr, newStr); </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>} </p><p style="text-indent: 2em;";>} </p><p style="text-indent: 2em;";>return rep; </p><p style="text-indent: 2em;";> alert(replaceStr("how do you do","do","are")); </p><p style="text-indent: 2em;";>答:弹出警示对话框,显示how are you are。 </p><p style="text-indent: 2em;";>2、<script> </p><p style="text-indent: 2em;";>var x,y=null; </p><p style="text-indent: 2em;";>alert(x) ; </p><p style="text-indent: 2em;";>alert(y) ; </p><p style="text-indent: 2em;";>alert(x=y); </p><p style="text-indent: 2em;";>alert(x==y); </p><p style="text-indent: 2em;";></script> </p><p style="text-indent: 2em;";>答:依次弹出四个警示对话框,分别显示undefined、null、null、true。 </p><p style="text-indent: 2em;";>3、</html> </p><p style="text-indent: 2em;";>x=”a”; </p><p style="text-indent: 2em;";>y=”b”; </p><p style="text-indent: 2em;";>z=false; </p><p style="text-indent: 2em;";>9 </p><p style="text-indent: 2em;";>function testOne(){ </p><p style="text-indent: 2em;";>var x=”c”; </p><p style="text-indent: 2em;";>var y=”d”; </p><p style="text-indent: 2em;";>z=true; </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>} </p><p style="text-indent: 2em;";>function testTwo(){ </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>} </p><p style="text-indent: 2em;";>testOne(); </p><p style="text-indent: 2em;";>testTwo(); </p><p style="text-indent: 2em;";>答:依次弹出六个警示对话框,分别显示c、d、true、a、b、true。 </p><p style="text-indent: 2em;";>4、当单击button按钮时,出现什么结果。 </p><p style="text-indent: 2em;";><html> </p><p style="text-indent: 2em;";> <head> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";><title>Untitled Document

答:弹出警示对话框,显示403070。

三、编写程序

1、实现在标题栏和状态栏上动态显示当前时间的效果。

新建网页 1

2、交换图像。

3、改变下拉列表框的选项时能显示当前选项的文本和值。

4、要求能够弹出对话框提示当前选中的是第几个单选框。

12

13

5、改变下拉列表框显示图片,并显示在文本框中。

图像切换

15

var content = ("feedBack").value;

if>20){

}

("feedBack").value=content;

("number").innerHTML=;

content = (0,20);

留言

0

16


本文标签: 对象 显示 实现 页面