没有搜到到结果?点击这里求解答/求资源。
【单选题】
某页面中有两个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;
【判断题】
场效应管漏极电流ID= gmugs。

正确
错误
【简答题】
设置属性[填空1] 指定被验证控件ID

【单选题】
A: Hello, this is Bill. Id like to speak with Mr Wang, please. B: [填空]

Who is speaking over there?
Sorry, he is not available at the moment.
Can you tell me who you are?
Theres no one here by that name.
【单选题】
A: [填空]? B: Yes, Id like a gin and tonic and some crisps.

What do you want to eat
Excuse me, are you ready to order now
Excuse me, but whod like to order
Have you decided what to have yet
【单选题】
阅读以下代码段,则可知( )。INPUT type=text name=textfieldINPUT type=radio name=radio value=女INPUT type=checkbox name=checkbox value=checkboxINPUT type=file name=file

上面代码表示表单元素类型分别是:文本框、单选按钮、复选框、文件域
上面代码表示表单元素类型分别是:文本框、复选框、单选按钮、文件域
上面代码表示表单元素类型分别是:密码框、多选按钮、复选框、文件域
上面代码表示表单元素类型分别是:文本框、单选按钮、下拉列表框、文件域
【判断题】
When you are asked Whats your name?, its more polite to respond with a whole sentence My name is... than only telling a name.

正确
错误
【单选题】
阅读下面的HTML代码,如果期望tabs位于box容器右下角,则需要添加CSS样式(????)。? div?id=boxdiv?id=tabs/div/div

#tabs{position:absolute;right:0;bottom:0;}
#tabs{position:relative;right:0;bottom:0;}
#box{position:relative;}#tabs{position:absolute;right:0;bottom:0;}
#box{position:relative;}#tabs{position:rightbottom;}
【单选题】
在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]
【单选题】
阅读下面的HTML代码,如果期望tabs位于box容器右下角,则需要添加CSS样式(????)。?div?id=box div?id=tabs/div/div?

#tabs{position:absolute; right:0 ;bottom:0;}
#tabs{position:relative; right:0; bottom:0;}
#box{position:relative;}#tabs{position:absolute; right:0; bottom:0;}
#box{position:relative;}#tabs{position:right bottom;}