【单选题】【消耗次数:1】
Would you like to have dinner with us this evening?
OK, but I have to go to a meeting now
No, I can’t
I’d love to, but this evening I have to go to the airport to meet my parents
I don’t know
参考答案:
复制
纠错
相关题目
【单选题】 25. I can’t go—for one thing, I have no money, and ___, I have too much work.
①  what’s more 
②  as well 
③  for another 
④  in addition
【单选题】 A: Would you like to go to the cinema this evening?B: Ok , but I dont want to watch ___ sad.
①  something
②  anything
③  nothing
【判断题】 A: May I have your order now? B: No, I don’t have a choice of meat.
①  正确
②  错误
【单选题】 Can you go out with us for dinner this evening?
①  No, I already have plans
②  Thanks a lot but I’m busy tonight
③  No, I really don’t like being with you
④  I’m ill, so I shouldn’t go out for dinner
【单选题】 If you don’t go, ____ I.
①  nor shall
②  so don’t
③  neither do
④  so do
【单选题】 Don’t go there this afternoon, I’d rather you _____ tomorrow.
①  went
②  go
③  will go
④  would go
【单选题】 Jane: I’d like to have some ice cream if you don’t mind. Man: ____. Help yourself.?
①  of course ?
②  Yes, I do ?
③  Oh, yes ?
④  Of course not?
【单选题】 A: Would you like to go to the cinema? B: If I can finish my homework. A: [填空]
①  Why bother?
②  Oh, come on!
③  Then what?
④  Thanks a lot.
【单选题】 Can you go to the concert with us this evening?____________
①  No, I already have plans.
②  I’d love to, but I’m busy tonight.
③  No, I really don’t like being with you.
④  I’m ill, so I shouldn’t go out.
【单选题】 Can I have the records [填空] I lent you?
①  that
②  whom
③  those
④  whose
随机题目
【多选题】 使用Core HTML删除和替换节点的方法,以下说法正确的是:(选择二项)
①  removeChild(node) 删除指定的节点
②  replaceChild(newNode,oldNode) 用其它节点替换指定节点
③  createElement()用于创建一个新元素
④  以上说法全正确
【多选题】 以下不属于表格对象的方法有:(选择二项)
①  rows
②  insertRow
③  deleteRow
④  updateRow
【单选题】 某页面中有一个id为main的div,div中有两个图片和一个文本框,下列( )能够完整地复制节点main及div中所有的内容。(选择一项)
①  document.getElementById(main).cloneNode(true);
②  document.getElementById(main).cloneNode(false);
③  document.getElementById(main).cloneNode( );
④  main.cloneNode( );
【单选题】 在页面中有一个10行3列的表格,表格的id为Ptable,下面的选项中只删除最后一行的是( )(选择一项)
①  document.getElementById(Ptable).deleteRow(10);
②  var delrow=document.getElementById(Ptable).lastChild;delrow.parentNode.removeChild(delrow);
③  var index=document.getElementById(Ptable).rows.length;document.getElementById(Ptable).deleteRow(index);
④  var index=document.getElementById(Ptable).rows.length-1;document.getElementById(Ptable).deleteRow(index);
【单选题】 在页面中有一个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