【单选题】
页面中有一表单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( ); }
【多选题】
下列选项中,( )可以打开一个无状态栏的页面。(选择二项)
①
window.open(advert.html
②
window.open(advert.html,广告,toolbar=1,scrollbars=0,status=1
③
window.open(advert.html,,scrollbars=1,location=0,resizable=1
④
window.open(advert.html,,toolbars=0, scrollbars=1, location=1, status=no
【单选题】
以下选项中,( )可以打开一个无状态栏,无工具栏、有滚动条的页面。(选择一项)
②
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)