Javascript试题一、不定项选择题声明一个对象,给它加上name属性和show方法显示其name值,以下代码中正确的是(D)varobj=[name:"zhangsan",show:function(){alert(name);}];varobj={name:"zhangsan",show:”alert()”};varobj={name:"zhangsan",show:function(){alert(name);}};varobj={name:"zhangsan",show:function(){alert();}};以下关于Array数组对象的说法不正确的是(CD)对数组里数据的排序可以用sort函数,如果排序效果非预期,可以给sort函数加一个排序函数的参数reverse用于对数组数据的倒序排列向数组的最后位置加一个新元素,可以用pop方法unshift方法用于向数组删除第一个元素要将页面的状态栏中显示“已经选中该文本框”,下列JavaScript语句正确的是(A)="已经选中该文本框"="已经选中该文本框"="已经选中该文本框"="已经选中该文本框"点击页面的按钮,使之打开一个新窗口,加载一个网页,以下JavaScript代码中可行的是(AD)<inputtype="button"value="new"onclick="open('','_blank')"/><inputtype="button"value="new"onclick="='';"/><inputtype="button"value="new"onclick="('');"/><formtarget="_blank"action=""><inputtype="submit"value="new"/></form>使用JavaScript向网页中输出<h1>hello</h1>,以下代码中可行的是(BD)<scripttype="text/javascript">(<h1>hello</h1>);</script><scripttype="text/javascript">("<h1>hello</h1>");</script><scripttype="text/javascript"><h1>hello</h1></script><h1><scripttype="text/javascript">("hello");</script></h1>分析下面的代码:<html><head> <scripttype="text/javascript"> functionwriteIt(value){=value;} </script></head><bodybgcolor="#ffffff"> <formname="myfm"> <inputtype="text"name="first_text"> <inputtype="text"name="second_text"onchange="writeIt(value)"> </form></body></html>以下说法中正确的是(CD)在页面的第二个文本框中输入内容后,当鼠标离开第二个文本框时,第一个文本框的内容不变在页面的第一个文本框中输入内容后,当鼠标离开第一个文本框时,将在第二个文本框中复制第一个文本框的内容在页面的第二个文本框中输入内容后,当鼠标离开第二个文本框时,将在第一个文本框中复制第二个文本框的内容在页面的第一个文本框中输入内容后,当鼠标离开第一个文本框时,第二个文本框的内容不变下面的JavaScript语句中,(D)实现检索当前页面中的表单元素中的所有文本框,并将它们全部清空for(vari=0;i<;i++){if([i].type=="text")[i].value="";}for(vari=0;i<;i++){if(forms[0].elements[i].type=="text")forms[0].elements[i].value="";}if(=="text")
Javascript复习资料 来自淘豆网m.daumloan.com转载请标明出处.