【单选题】
密码框是一种特殊的文本框,它的不同之处是当输入内容时,均以*表示,以保证密码的安全性。( )
【判断题】
在Access中,文本框控件可以是绑定型和非绑定型的,但不可以是计算型的。
【单选题】
添加图片可以(),也可以点击文本框上方的图片插入工具进行图片插入。
【单选题】
在PowerPoint 2013中,要修改文本框内的内容,最便捷的操作是哪个?
②
选择该文本框中所要修改的内容,然后重新输入文字
③
重新选择带有文本框的版式,然后再向文本框内输入文字
【单选题】
为了使文本框同时具有水平和垂直滚动条,应先将MultiLine属性设置为True,然后再把ScrollBars属性设置为()。
【单选题】
在页面上有一个id为room的文本框,下面选项()能够实现当单击room时,room的背景颜色变为“#cccccc”。
①
input id=room type=text onfocus=this.style.backgroundColor=#cccccc /
②
input id=room type=text onfocus=this.backgroundColor=#cccccc /
③
input id=room type=text onblur=this.style.backgroundColor=#cccccc /
④
input id=room type=text onblur=this.backgroundColor=#cccccc /
【单选题】
Power Point 2010在制作动画的过程中,文本框中文字的出现可以设置成“整批、按字和按字母”方式来实现动画,此操作在( )对话框中
【单选题】
框(排)架柱内力组合时,不包括下列组合()
【单选题】
页面中有一表单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( ); }
【单选题】
假定在窗体是有两个命令按钮Command1和Command2及一个文本框Text1。有如下事件过程代码:
Private Sub command1_click()
Text1.Text = 中国
End Sub
Private Sub command2_click()
Text1.Text = China
End Sub
若首先单击command1,再单击Command2,则在文本框中显示 ( )。