【单选题】
在HTML页面上包含如下所示的页面代码, 要求编写JavaScript语句清空下拉选择框country的选项内容, 则选项中的语句正确的是( )。(form name=form1 action=)(select name=country) (option value=中国)中国(/option) (option value=美国)美国(/option)(/select)(/form)(选择一项)
①
document.form1.country.options.size=0;
②
document.form1.country.options.length=0;
③
document.form1.country.options.value=
④
document.form1.country.value=
【单选题】
对字符串str = welcome to china进行下列操作处理时,描述结果正确的是()(选择一项)
①
str.substring(1,5)返回值是elcom
③
str.indexOf(come,4)的返回值为4
④
str.toUpperCase( )的返回值是welcome to china