
复制
纠错
➡️如需代学继续教育,联系微信:yizhituziang
【多选题】
13世纪以后,欧洲先后形成的商业中心有( )。
【单选题】
辽宁、安徽、河南、重庆、贵州、云南、深圳等地也先后发布“( )人工智能行动计划”。
【判断题】
“三中心”是指曲江国际会议中心、西安奥体中心、绿地笔克国际会议中心。
【判断题】
作业中心有助于企业更明晰地分析一组相关的作业,以便进行作业管理以及企业组织机构和责任中心的设计与考核。( )
【判断题】
到“十四五”末,全省新增国家技术创新中心3—5家以上,省级技术创新中心总量稳定在100家左右。
【多选题】
以下属于2014年我国新增的国家级骨干网直联点的是()。
【单选题】
下列选项中,不属于文本属性的是( )。
【单选题】
页面中有一表单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( ); }
【单选题】
当鼠标指针移到页面上的某个图片时,图片出现一个边框,并且图片放大,这是因为激发了下面的( )事件。
【单选题】
关于DOM的三个组成部分,其中不包括:()
【单选题】
在页面中有一个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);
【单选题】
对于String对象常用方法,以下描述正确的是:
【单选题】
关于Date对象的方法,以下说法错误的是()
【单选题】
在页面中有一个1行2列的表格,其中表格行的id为r1,下列( )能在表格中增加一列,并且将这一列显示在最前面。
①
document.getElementById(r1).Cells(1);
②
document.getElementById(r1).Cells(0);
③
document.getElementById(r1).insertCells(0);
④
document.getElementById(r1).insertCells(1);
【单选题】
在JavaScript中,运行下面代码后的返回值是( )。
var flag = true;
document.write(typeof(flag));