【单选题】【消耗次数:1】
25.If you explained the situation to your lawyer, he ______ able to advise you much better than I can.
will be
was
would be
were
参考答案:
复制
纠错
相关题目
【单选题】 []a friend I would advise you to stop smoking at once.
①  As
②  Like
【单选题】 Can I help you with your suitcase?
①  I have no idea
②  No, no. I can carry it myself
③  That’s a good idea
④  Thank you. I can manage myself
【单选题】 You should know better than ____ your little sister at home by herself.
①  to leave
②  leaving
③  to have left
④  left
【单选题】 You should know better than _____your little sister at home by herself.
①  to leave
②  leaving
③  to have left
④  left
【单选题】 When you go to the doctor he asks you to describe your ____ so that he can make a diagnosis (诊断).
①  indications
②  signs
③  symbols
④  symptoms
【单选题】 How much do you ______for this package tour? Can I get a discount?
①  charge
②  change
③  choose
④  chase
【单选题】 A: [填空]. Where was I? B: You were talking about your trip to South Africa.
①  What did I hear
②  Lets back up
③  Lets check in
④  What were you talking about
【判断题】 A: Do you think I can use your computer for one day? B: No you cant.
①  正确
②  错误
【单选题】 As for words which do not often occur in everyday situation, you just need to be able to ____.
①  recognize them
②  nod at them
③  concentrate much on them
④  practice using them constantly
【单选题】 Can I help you with the bag?
①  No, no. I can take it myself
②  Thank you
③  Sorry, you can’t
④  No, I’m all right
随机题目
【多选题】 以下属于文本框对象常用方法的有:(选择三项)
①  blur
②  focus
③  onkeypress
④  select
【多选题】 某页面中有如下代码,下列选项中( )能把“令狐冲”修改为“任盈盈”。(table border=0 cellspacing=0 cellpadding=0 id=Table1) (tr id=row1) (td)张三丰(/td) (td)90(/td) (/tr) (tr id=row2) (td)令狐冲(/td) (td)88(/td) (/tr)(/table)(选择二项)
①  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=任盈盈
【多选题】 页面上有一个文本框和一个类change,change可以改变文本框的边框样式,那么使用下面的( )就可以实现当鼠标指针移到文本框上时,文本框的边框样式发生变化。(选择二项)
①  onmouseover=className=change
②  onmouseover=this.className=change
③  onmouseover=this.style.className=change
④  onmousemove=this.style.border=solid 1px #ff0000
【多选题】 使用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