没有搜到到结果?点击这里求解答/求资源。
【单选题】
文本框没有什么属性?

Enabled
Visible
BackColor
Caption
【判断题】
文本字段表单中常用元素之,包括了单行文本字段和密码文本字段,不能实现多行文本区域。

正确
错误
【单选题】
如果要在文本框内容在运行时不能编辑,需将文本框()属性设置为True。

Caption
PasswordChar
Text
Char
【单选题】
如果要在文本框内容在运行时不能编辑,需将文本框()属性设置为True。

Caption
PasswordChar
Text
Char
【单选题】
用于设置文本框显示宽度属性?

Size
MaxLength
Value
Length
【单选题】
用于设置文本框显示宽度属性( )

Size
MaxLength
Value
Length
【单选题】
页面中有表单myform,表单中有名为txtEmail输入电子邮件文本框,则以下验证电子邮件格式必须包含点符号(.)代码正确( ).(选择 项)(选择项)

var strEmail = document.myform.txtEmail.value; if(strEmail.indexOf(.,0)==-1){ alert(电子邮件格式不正确\n必须包含点符号! document.myform.txtEmail.focus( ); }
var strEmail = document.myform.txtEmail.text; if(strEmail.indexOf(.,0)==-1){ alert(电子邮件格式不正确\n必须包含点符号! document.myform.txtEmail.focus( ); }
var strEmail = document.myform.txtEmail.value; if(strEmail.concat(.,0)==-1){ alert(电子邮件格式不正确\n必须包含点符号! document.myform.txtEmail.focus( ); }
var strEmail = document.myform.txtEmail.text; if(strEmail.concat(.,0)==-1){ alert(电子邮件格式不正确\n必须包含点符号! document.myform.txtEmail.focus( ); }
【单选题】
要在网页状态栏中显示“已经选中该文本框”,下列JavaScript语句正确( )。

window.status=已经选中该文本框;
document.status=已经选中该文本框;
window.screen=已经选中该文本框;
document.screen=已经选中该文本框;
【单选题】
要在网页状态栏中显示“已经选中该文本框”,下列JavaScript语句正确( )。 (选择项)

window.status=已经选中该文本框
document.status=已经选中该文本框
window.screen=已经选中该文本框
document.screen=已经选中该文本框
【单选题】
如果想让文本框内容在运行时不能编辑,需将文本框()属性设置为True。

Locked
MultiLine
TabStop
Visible