【判断题】【消耗次数:1】
艺术大师的杰作尽管很好,但并不适合幼儿欣赏。
正确
错误
参考答案:
复制
纠错
相关题目
【单选题】 以下哪一特点的植物不适合幼儿种植( )。
①  生长周期短
②  易成活
③  种植方法简单
④  生长周期长
【单选题】 练习瑜伽不适合的道具()
①  A瑜伽垫
②  B柔软的床
③  C地毯
④  D毡垫
【单选题】 对于0-2岁的幼儿来说,以下哪种玩具不适合?(?? )
①  发声玩具
②  推拉玩具
③  图书玩具
④  童话表演玩具
【单选题】 对于0-2岁的幼儿来说,以下哪种玩具不适合?( )
①  发声玩具
②  推拉玩具
③  图书玩具
④  童话表演玩具
【单选题】 下面哪件事情不适合授权?()
①  经常重复性的工作
②  部门之间的冲突
③  整理文件
④  接听电话、接发传真
【多选题】 下列哪些人群不适合创业( )。
①  懒惰的人
②  人脉资源广的人
③  胆小怕事的人
④  灵活变通的人
【多选题】 不适合公开招标的项目是()。
①  亚洲银行的贷款建设项目
②  保密工程
③  抢险救灾等紧急情况下的工程
④  险额以下的建设工程项目
⑤  涉及国家安全的项目
【多选题】 下列哪些时间不适合打私人电话。( )
①  自己有空闲时间时
②  对方休息时间
③  对方用餐时间
④  以上都不对
【单选题】 不适合航空运输货物的是( )
①  高附加值产品
②  紧急救援物资
③  生鲜食品
④  大宗低值物品
【单选题】 下列图形不适合描述分类数据的是
①  条形图
②  饼图
③  帕累托图
④  茎叶图
随机题目
【单选题】 页面中有一个表单myform,表单中有名为txtName的输入用户名的文本框,则以下验证用户名非空的代码正确的是( )。(选择一项)
①  var name = document.myform.txtName.value; if(name==){ alert(用户名不能为空! document.myform.txtName.focus( ); }
②  var name = document.myform.txtName.text; if(name==){ alert(用户名不能为空! document.myform.txtName.focus( ); }
③  var name = document.myform.txtName.value; if(name.isNull==true){ alert(用户名不能为空! document.myform.txtName.focus( ); }
④  var name = document.myform.txtName.text; if(name.isNull==true){ alert(用户名不能为空! doocument.myform.txtName.focus( ); }
【单选题】 下列选项中( )可以用来检索下拉列表框中被选项目的索引号。(选择一项)
①  selectedIndex
②  options
③  length
④  indexNumber
【单选题】 某页面中有两个id分别为mobile和telephone的图片,下面( )能够正确地隐藏id为mobile的图片。(选择一项)
①  document.getElementsByName(mobile).style.display=none
②  document.getElementById(mobile).style.display=none
③  document.getElementsByTagName(mobile).style.display=none
④  document.getElementsByTagName(img).style.display=none
【单选题】 JavaScript代码段如下,下面对代码段分析正确的是( )。marquee direction=left onMouseOver=this.stop( ); onMouseOut=this.start( ); loop=100滚动的文字/marquee则下列选项对代码段描述正确的是( )。(选择一项)
①  文字循环向右滚动100次,然后停止
②  文字向左无限次循环滚动;鼠标停在文字上时,文字停止滚动,移开时,继续滚动
③  文字循环向左滚动100次,鼠标停在文字上时,文字停止滚动,移开时,继续滚动
④  文字向左来回往复滚动,鼠标停在文字上时,文字停止滚动,移开时,继续滚动
【单选题】 以下不属于select对象常用属性的是(选择一项)
①  onchange
②  length
③  selectedIndex
④  options
【单选题】 页面中有一表单myform,表单中有名为txtEmail的输入电子邮件文本框,则以下验证电子邮件格式必须包含点符号(.)代码正确的是( ).(选择 一项)(选择一项)
①  var strEmail = document.myform.txtEmail.value; if(strEmail.indexOf(.,0)==-1){ alert(电子邮件格式不正确\n必须包含点符号! document.myform.txtEmail.focus( ); }
②  var strEmail = document.myform.txtEmail.text; if(strEmail.indexOf(.,0)==-1){ alert(电子邮件格式不正确\n必须包含点符号! document.myform.txtEmail.focus( ); }
③  var strEmail = document.myform.txtEmail.value; if(strEmail.concat(.,0)==-1){ alert(电子邮件格式不正确\n必须包含点符号! document.myform.txtEmail.focus( ); }
④  var strEmail = document.myform.txtEmail.text; if(strEmail.concat(.,0)==-1){ alert(电子邮件格式不正确\n必须包含点符号! document.myform.txtEmail.focus( ); }
【多选题】 下列( )可以使窗口显示前一个页面(选择二项)
①  back( )
②  forward( )
③  go(1)
④  go(-1)
【多选题】 下列选项中,( )可以打开一个无状态栏的页面。(选择二项)
①  window.open(advert.html
②  window.open(advert.html,广告,toolbar=1,scrollbars=0,status=1
③  window.open(advert.html,,scrollbars=1,location=0,resizable=1
④  window.open(advert.html,,toolbars=0, scrollbars=1, location=1, status=no
【多选题】 在JavaScript中,下列方法中相当于客户端点击F5(刷新)的是()(选择二项)
①  document.replace( );
②  document.reload( );
③  location.replace(location.href);
④  location.reload( );
【单选题】 下面( )可实现刷新当前页面。(选择一项)
①  reload( )
②  replace( )
③  href
④  referrer