【单选题】【消耗次数:1】
More and more children are interested in blind boxes _______ they wonder what is inside.
so
because
unless
though
参考答案:
复制
纠错
相关题目
【单选题】 We are interested in the weather because it __________ us so directly --- what we wear, what we do, and even how we feel.
①  benefits
②  affects
③  guides
④  effects
【单选题】 We will not have the picnic unless more people sign ____ .
①  in
②  up
③  out
④  down
【判断题】 “Purchase”and “buy”are not synonyms because “purchase”is more formal than “buy”.
①  正确
②  错误
【单选题】 In ____ recent years, Niagara Fallshave come to be appreciated more for their natural beauty as _______ wonder of nature.
①  the; a
②  the; the
③  /; the
④  /; a
【判断题】 What a good news theyve got. No wonder they are so happy.
①  正确
②  错误
【单选题】 So clear was his _____ of the case that others had no more to say.
①  attitude
②  presentation
③  comment
④  remark
【判断题】 Our city becomes more and more beautiful.
①  正确
②  错误
【单选题】 You should give your children more opportunities to have personal time and space to ( ) with friends or do whatever they want.
①  hang out
②  hang up
③  hang on
④  hang in
【单选题】 Computer____________ more and more extensively in the world today.
①  are being used
②  are been used
③  have used
④  were used
【单选题】 Computers are being used more and more ________________ in the world today.
①  expensively
②  excitedly
③  extensively
④  extremely
随机题目
【单选题】 在页面上有一个id为room的文本框,下面选项()能够实现当单击room时,room的背景颜色变为“#cccccc”。
①  input id=room type=text onfocus=this.style.backgroundColor=#cccccc /
②  input id=room type=text onfocus=this.backgroundColor=#cccccc /
③  input id=room type=text onblur=this.style.backgroundColor=#cccccc /
④  input id=room type=text onblur=this.backgroundColor=#cccccc /
【单选题】 在JavaScript中,运行下面代码后的返回值是( )。var flag = true;document.write(typeof(flag));(选择一项)
①  undefined
②  null
③  number
④  boolean
【单选题】 以下不属于window对象的常用方法有:()(选择一项)
①  prompt
②  alert
③  confirm
④  location
【单选题】 在一个注册页面中,如果填写完注册信息后单击“注册”按钮,使用window对象的( )方法会弹出一个如图所示的确认对话框,并且根据单击“确定”或“取消”按钮的不同,实现不同的页面程序。<img src=https://huaweicloudobs.ahjxjy.cn/F1AA854D6384720BD16C7B3F88FC2BBF.png title=Q-47.png alt=Q-47.png/>(选择一项)
①  confirm( )
②  prompt( )
③  alert( )
④  open( )
【单选题】 下面( )能在页面中弹出如下图所示的提示窗口,并且用户输入框中默认无任何内容。<img src=https://huaweicloudobs.ahjxjy.cn/AF2289244F8BA82AC76287FECD890305.png title=Q-42.png alt=Q-42.png/>(选择一项)
①  prompt(请输入你的姓名:
②  alert(请输入你的姓名:
③  prompt(请输入你的姓名:,
④  alert(请输入你的姓名:,
【单选题】 在javaScript中,运行下列代码后的结果是 var d=1document.write(typcof(d));(选择一项)
①  char
②  number
③  string
④  undefined
【单选题】 对于正则表达式的元字符,以下描述错误的是()(选择一项)
①  \d 表示数字字符
②  \D 表示非数字字符
③  \W 表示包含数字、字母、和下划线字符
④  \w 表示包含数字、字母、和下划线字符
【单选题】 关于样式的scrollTop属性,以下说法正确的是(选择一项)
①  设置元素顶边缘距离父元素顶边缘之上或之下的距离
②  设置或获取位于对象最顶端和窗口中可见内容的最顶端之间的距离
③  设置或获取位于对象最左端和窗口中可见内容的最左端之间的距离
④  设置或获取位于对象最底端和窗口中可见内容的最底端之间的距离
【单选题】 在HTML中,运行下面的javascript代码,则在弹出的提示框中显示的消息内容为()。(script language=javascript) x=3; y=2; z=(x+2)/y; alert(z);(/script)(选择一项)
①  2
②  2.5
③  32/2
④  16
【单选题】 在JavaScript中,把字符串“123”转换为整型值123的正确方法是( )。(选择一项)
①  var str=123 var num=(int)str;
②  var str=123 var num=str.parseInt(str);
③  var str=123 var num=parseInt(str);
④  var str=123 var num=Integer.parseInt(str);