【单选题】
在页面中有一个id为book的下拉列表框,下列( )能够动态地在下拉列表框book中添加一个选项,并且显示结果如图所示。(有图)
①
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);
【单选题】
对字符串str = welcome to china进行下列操作处理时,描述结果正确的是()
①
str.substring(1,5)返回值是elcom
③
str.indexOf(come,4)的返回值为4
④
str.toUpperCase( )的返回值是welcome to china
【单选题】
某页面中有两个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;
【单选题】
以下选项中,( )可以打开一个无状态栏,无工具栏、有滚动条的页面。
②
window.open(adv.html,广告,toolbar=0,scrollbar=0,status=1)
③
window.open(adv.html,广告,toolbar=1,scrollbar=1,status=0)
④
window.open(adv.html,广告,toolbar=0,scrollbar=1,status=0)
【单选题】
要在网页的状态栏中显示“已经选中该文本框”,下列JavaScript语句正确的是是( )。
①
window.status=已经选中该文本框;
②
document.status=已经选中该文本框;
③
window.screen=已经选中该文本框;
④
document.screen=已经选中该文本框;