【判断题】【消耗次数:1】
A: Ok, next question. Can you follow me? B: Yes, perfectly.
正确
错误
参考答案:
复制
纠错
相关题目
【单选题】 A: Now lets move on to another topic. Can you follow me? B: [填空], Professor.
①  No, I am not
②  Yes, perfectly
③  Yes, I will
④  No, I havent
【单选题】 A: Id like to ask you a question. B: [填空]
①  Yes, go ahead.
②  Sorry, Im kind of busy.
③  OK, whats up?
④  Yeah, whats on your mind?
【单选题】 —Excuse me, do you know _______?—Yes. Next Friday.
①  when will the volunteers come back
②  when the volunteers will come back
③  how will the volunteers come back
④  how the volunteers will come back
【判断题】 A: Could you pack it for me? B: Thats OK.
①  正确
②  错误
【单选题】 A: Can you give me a hand? B: [填空].
①  I can give you both hands
②  Im all yours
③  The pleasure is mine
④  Ill watch your back
【单选题】 A Chinese traditional wedding ceremony will ______us perfectly.
①  follow
②  join
③  combine
④  suit
【判断题】 A: Can I use the phone in the living room? B: Yes, you can.
①  正确
②  错误
【判断题】 A: Could you mail the letter for me? B: Yes, I could.
①  正确
②  错误
【判断题】 A: Can you do this for me, please? B: No, thanks.
①  正确
②  错误
【判断题】 A: Excuse me, have you got the time? B: Yes, I have.
①  正确
②  错误
随机题目
【单选题】 在页面中有一个id为book的下拉列表框,下列( )能够动态地在下拉列表框book中添加一个选项,并且显示结果如图所示。<img src=https://huaweicloudobs.ahjxjy.cn/19D8EC7ADFA9472CCAA1C8E4D269A3BB.png title=Q-68.png alt=Q-68.png/>(选择一项)
①  document.getElementById(book).add(new Option(01,梦想照进现实),null);
②  document.getElementById(book).add(01,梦想照进现实
③  document.getElementById(book).add(梦想照进现实,01
④  document.getElementById(book).add(new Option(梦想照进现实,01),null);
【单选题】 在页面中有一个1行2列的表格,其中表格行(tr)的id为r1,下列( )能在表格中增加一列,并且将这一列显示在最前面。(选择一项)
①  document.getElementById(r1).Cells(1);
②  document.getElementById(r1).Cells(0);
③  document.getElementById(r1).insertCells(0);
④  document.getElementById(r1).insertCells(1);
【单选题】 当鼠标指针移到页面上的某个图片时,图片出现一个边框,并且图片放大,这是因为激发了下面的( )事件。(选择一项)
①  onclick
②  onmousemove
③  onmouseout
④  onmousedown
【单选题】 在javascript中,下列选项中可以获取滚动条距窗口顶端滚动的距离的是(选择一项)
①  document.documentElement.scrollTop
②  document.documentElement.scroll
③  document.style.scrollTop
④  document.style.scroll
【单选题】 在JavaScript中,下列选项能把“毒皇后”这一行删除的是()table border=0 cellspacing=0 cellpadding=0 id=tb tr id=row1 七个小矮人/td 7/td /tr tr id=row2 毒皇后/td 100/td /tr tr id=row3 白雪公主/td 8/td /tr/table(选择一项)
①  document.getElementById(tb).deleteRow(1)
②  document.getElementById(tb).deleteRow(2)
③  document.getElementById(tb).deleteRow[1]
④  document.getElementById(tb).deleteRow[2]
【单选题】 关于DOM的三个组成部分,其中不包括:()(选择一项)
①  Core DOM
②  XML DOM
③  HTML DOM
④  XHTML DOM
【单选题】 关于document对象的常用方法,以下说法错误的有:()(选择一项)
①  getElementById( ) 返加拥有指定id的第一个对象的引用
②  getElementById( ) 返加拥有指定id的对象的集合
③  getElementsByName( ) 返加拥有指定名称的对象的集合
④  write() 向文档写文本,HTML表达式或javascript代码
【单选题】 页面中有一个表单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