【单选题】【消耗次数:1】
Its on No.21 bus ( ) I came across my ffirst English teacher yesterday.
where
that
which
how
参考答案:
复制
纠错
相关题目
【单选题】 It was in the school library ____ I came across John.
①  that
②  which
③  where
④  how
【单选题】 I wish I my uncle yesterday.
①  have met
②  would meet
③  had met
④  met
【单选题】 I wish I my uncle yesterday.
①  have met
②  would meet
③  had met
④  met
【单选题】 Where is my pen? I________it.
①  might lose
②  would have lost
③  should have lost
④  must have lost
【单选题】 The thought flashed across my mind: “By some ?means or______ she has some information about my engagement. But how?”
①  other
②  others
③  the other
④  the others
【单选题】 My friend_______when I came in.
①  drank
②  drink
③  was drinking
【单选题】 13. Where is my pen? I ______ it.
①  might lose
②  would have lost
③  should have lost
④  must have lost
【单选题】 I?borrowed?a?book?[填空] my classmate?yesterday.
①  from
②  to
③  for
④  in
【单选题】 10.I spent __________ in doing my homework yesterday.
①  a half and two hour
②  two and a half hour
③  two hour and a half
④  two and a half hours
【单选题】 I haven’t made ( ) my mind where to go.
①  up
②  from
③  out
④  in
随机题目
【单选题】 页面中有一个id为price的层,并且有一个id选择器price用来设置层price的样式,在IE浏览器中运行此页面,下面( )能正确获取层的背景颜色。
①  document.getElementById(price).currentStyle.backgroundColor
②  document.getElementById(price).currentStyle.background-color
③  document.getElementById(price).style.backgroundColor
④  var divObj=document.getElementById(price);document.defaultView.getComputedStyle(divObj,null).background;
【单选题】 以下不属于javascript中提供的常用数据类型的是:( )
①  undefined
②  null
③  number
④  iterator
【单选题】 下列语句中,()语句是根据表达式的值进行匹配,然后执行其中的一个语句块,如果找不到匹配项,则执行默认语句块
①  switch
②  if-else
③  for
④  字符串运算符
【多选题】 下列选项中,( )可以打开一个无状态栏的页面。
①  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);
【多选题】 某页面中有如下代码,下列选项中( )能把“令狐冲”修改为“任盈盈”。 张三丰 90 令狐冲 88
①  document.getElementById(Table1).rows[2].cells[1].innerHTML=任盈盈;
②  document.getElementById(Table1).rows[1].cells[0].innerHTML=任盈盈;
③  document.getElementById(row2).cells[0].innerHTML=任盈盈;
④  document.getElementById(row2).cells[1].innerHTML=任盈盈;
【多选题】 在javaScript中,有如下代码,选项中都能够得到“李四”的是()。 姓名 年龄 工资 张三 30 5000 李四 25 4500
①  var tb=document.getElementById(employee); var strHtml=tb.lastChild.lastChild.firstChild.value;
②  var tb=document.getElementById(employee); var strHtml=tb.lastChild.lastChild.firstChild.innerHTML;
③  var r=document.getElementById(row3);var strHtml=r.firstChild.HTML;
④  var r=document.getElementById(row3); var strHtml=r.firstChild.value;
【多选题】 下列( )可以使窗口显示前一个页面
①  back( )
②  forward( )
③  go(1)
④  go(-1)
【单选题】 setTimeout(adv( ),20)表示的意思是
①  间隔20秒后,adv()函数就会被调用
②  间隔20分钟后,adv()函数就会被调用
③  间隔20毫秒后,adv()函数就会被调用
④  adv()函数被持续调用20次
【单选题】 JavaScript是运行在()的脚本语言。
①  服务器端
②  客户端
③  在服务器运行后,把结果返回到客户端
④  在客户端运行后,把结果返回到服务端
【单选题】 在HTML页面上包含如下所示的页面代码, 要求编写JavaScript语句清空下拉选择框country的选项内容, 则选项中的语句正确的是( )。 中国 美国
①  document.form1.country.options.size=0;
②  document.form1.country.options.length=0;
③  document.form1.country.options.value=;
④  document.form1.country.value=;