【单选题】
页面中有一表单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( ); }
【单选题】
在页面中有一个10行3列的表格,表格的id为Ptable,下面的选项中只删除最后一行的是( )
①
document.getElementById(Ptable).deleteRow(10);
②
var delrow=document.getElementById(Ptable).lastChild;delrow.parentNode.removeChild(delrow);
③
var index=document.getElementById(Ptable).rows.length;document.getElementById(Ptable).deleteRow(index);
④
var index=document.getElementById(Ptable).rows.length-1;document.getElementById(Ptable).deleteRow(index);
【单选题】
在页面中有一个1行2列的表格,其中表格行的id为r1,下列( )能在表格中增加一列,并且将这一列显示在最前面。
①
document.getElementById(r1).Cells(1);
②
document.getElementById(r1).Cells(0);
③
document.getElementById(r1).insertCells(0);
④
document.getElementById(r1).insertCells(1);