【单选题】【消耗次数:1】
中国共产党是在哪一年建立的?
1920年
1921年
1922年
1923年
参考答案:
复制
纠错
相关题目
【单选题】 中国共产党是在哪一年创立的?
①  1920年
②  1921年
③  1922年
④  1923年
【单选题】 中国共产党成立于哪一年?
①  1920年
②  1921年
③  1922年
④  1923年
【单选题】 中国共产党是在哪一年成立的?
①  1920年
②  1921年
③  1922年
④  1923年
【单选题】 中国共产党是在哪一年成立的?
①  1919年
②  1920年
③  1921年
④  1922年
【单选题】 中国共产党是在哪一年成立的?
①  1919年
②  1920年
③  1921年
④  1922年
【单选题】 《共产党宣言》是在哪一年发表的?
①  1846年
②  1847年
③  1848年
④  1849年
【单选题】 《中国共产党中央委员会工作条例》是在哪一年印发的?
①  2017年
②  2018年
③  2019年
④  2020年
【单选题】 1920年8月,陈独秀领导建立的中国共产党早期组织是
①  上海共产主义小组
②  北京共产主义小组
③  武汉共产主义小组
④  广州共产主义小组
【单选题】 共产国际在哪一年宣布解散?
①  1942年
②  1943年
③  1944年
④  1945年
【判断题】 中国共产党是在1920年成立的。
①  正确
②  错误
随机题目
【单选题】 页面中有一个表单myform,表单中有名为txtName的输入用户名的文本框,则以下验证用户名非空的代码正确的是( )。(选择一项)
①  var name = document.myform.txtName.value; if(name==){ alert(用户名不能为空! document.myform.txtName.focus( ); }
②  var name = document.myform.txtName.text; if(name==){ alert(用户名不能为空! document.myform.txtName.focus( ); }
③  var name = document.myform.txtName.value; if(name.isNull==true){ alert(用户名不能为空! document.myform.txtName.focus( ); }
④  var name = document.myform.txtName.text; if(name.isNull==true){ alert(用户名不能为空! doocument.myform.txtName.focus( ); }
【单选题】 下列选项中( )可以用来检索下拉列表框中被选项目的索引号。(选择一项)
①  selectedIndex
②  options
③  length
④  indexNumber
【单选题】 某页面中有两个id分别为mobile和telephone的图片,下面( )能够正确地隐藏id为mobile的图片。(选择一项)
①  document.getElementsByName(mobile).style.display=none
②  document.getElementById(mobile).style.display=none
③  document.getElementsByTagName(mobile).style.display=none
④  document.getElementsByTagName(img).style.display=none
【单选题】 JavaScript代码段如下,下面对代码段分析正确的是( )。marquee direction=left onMouseOver=this.stop( ); onMouseOut=this.start( ); loop=100滚动的文字/marquee则下列选项对代码段描述正确的是( )。(选择一项)
①  文字循环向右滚动100次,然后停止
②  文字向左无限次循环滚动;鼠标停在文字上时,文字停止滚动,移开时,继续滚动
③  文字循环向左滚动100次,鼠标停在文字上时,文字停止滚动,移开时,继续滚动
④  文字向左来回往复滚动,鼠标停在文字上时,文字停止滚动,移开时,继续滚动
【单选题】 以下不属于select对象常用属性的是(选择一项)
①  onchange
②  length
③  selectedIndex
④  options
【单选题】 页面中有一表单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( ); }
【多选题】 下列( )可以使窗口显示前一个页面(选择二项)
①  back( )
②  forward( )
③  go(1)
④  go(-1)
【多选题】 下列选项中,( )可以打开一个无状态栏的页面。(选择二项)
①  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
【多选题】 在JavaScript中,下列方法中相当于客户端点击F5(刷新)的是()(选择二项)
①  document.replace( );
②  document.reload( );
③  location.replace(location.href);
④  location.reload( );
【单选题】 下面( )可实现刷新当前页面。(选择一项)
①  reload( )
②  replace( )
③  href
④  referrer