网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

在JavaScript中,输出不到网页的是()。

  • A、document.write()
  • B、console.log()
  • C、alert()
  • D、document.log()

参考答案

更多 “在JavaScript中,输出不到网页的是()。A、document.write()B、console.log()C、alert()D、document.log()” 相关考题
考题 分析下面的JavaScript代码段,输出结果是( )var mystring="I am a student";a=mystring.charAt(9);document.write(a); A.I am a stB.UC.UdentD.T

考题 分析下面的JavaScript代码段,输出的结果是( )。emp=new Array(5);emp[1]=1;emp[2]=2;document.write(emp.length); A.2B.3C.4D.5

考题 在JavaScript中,下列代码可以实现每隔5秒弹出"5秒到了!"的是( ) A.setTimeOut("alert('5秒到了!')",5)B.setTimeOut("alert('5秒到了!')",5000)C.setInterval("alert('5秒到了!')",5)D.setInterval("alert('5秒到了!')",5000)

考题 在网页中执行以下JavaScript代码:var str = "www.bjsxt.com";str.title = "北京尚学堂";alert(str.substring(4));该代码在网页中输出的内容是( ) A.空B.程序报错C.www.D.bjsxt.com

考题 vara=1;functiontest(){a++;alert(a);vara=1;alert(a);}test();分析上面JavaScript代码段,输出结果错误的是()。A、NaN1B、1NaNC、11D、NaNNaN

考题 分析下面的JavaScript代码段: var mystring="I am a student"; a=mystring.indexOf("am"); document.write(a); 输出结果是()。A、3B、4C、2D、1

考题 在JavaScript中,以下代码能产生输出的是()A、document.write()B、window.write()C、document.confirm()D、write “The Undefined Function”

考题 分析下面的Javascript代码段,输出结果是() var s1=parseInt(“101中学”); document.write(s1);A、NaNB、101中学C、101D、出现脚本错误

考题 在javascript中,document.write(“abc”.substr(1,2));的结果是()A、abB、bcC、bD、c

考题 使用Javascript语言在网页文档中直接输出“Hello World!”字符,应使用以下哪段代码()A、alert(“Hello World!");B、printf(“Hello World!");C、Document.write(“Hello World!");D、Response.write(“Hello World!");

考题 分析下面的JavaScript代码段,输出结果是()。var a=15.59;document.write(Math.round(a));A、15B、16C、15.5D、15.4

考题 分析下面的JavaScript代码段,输出的结果是() emp = new Array(5); emp[1]=1; emp[2]=2; document.write(emp.length);A、2B、3C、4D、5

考题 在文档上输出"HelloWorld"的正确Javascript语法是document.write("HelloWorld")。()

考题 在JavaScript中,输出到网页的是()。A、document.write()B、console.log()C、echo""D、printf""

考题 分析如下的JavaScript代码段,varc="10",d=10;document.write(c+d);则运行后在页面上输出()。A、20B、1010C、10

考题 看以下JavaScript程序:varx=prompt(“请输入1-5的数字!”);switch(x){case“1”:alert(“one”);case“2”:alert(“two”);case“3”:alert(“three”);case“4”:alert(“four”);case“5”:alert(“five”);default:alert(“none”);}运行以上程序,在提示对话框中输入“4”,依次弹出的对话框将输出()。A、four,five,noneB、four,noneC、fiveD、five,none

考题 在网页页面上输出"HelloWorld"的正确Javascript语法是()。A、alert("HelloWorld")B、console.log("HelloWorld")C、document.log("HelloWorld")D、document.write("HelloWorld")

考题 分析下面的Javascript代码段,输出结果是() var mystring=”I am a student”; var a=mystring.substring(9,13); document.write(a);A、studB、tudenC、udenD、udent

考题 多选题在JavaScript中,输出不到网页的是()。Adocument.write()Bconsole.log()Calert()Ddocument.log()

考题 单选题分析下面的JavaScript代码段: var mystring="I am a student"; a=mystring.indexOf("am"); document.write(a); 输出结果是()。A 3B 4C 2D 1

考题 单选题分析下面的JavaScript代码段,输出结果是()。var a=15.59;document.write(Math.round(a));A 15B 16C 15.5D 15.4

考题 单选题在javascript中,document.write(“abc”.substr(1,2));的结果是()A abB bcC bD c

考题 单选题分析如下的JavaScript代码段,varc="10",d=10;document.write(c+d);则运行后在页面上输出()。A 20B 1010C 10

考题 单选题在JavaScript中,输出到网页的是()。A document.write()B console.log()C echoD printf

考题 多选题vara=1;functiontest(){a++;alert(a);vara=1;alert(a);}test();分析上面JavaScript代码段,输出结果错误的是()。ANaN1B1NaNC11DNaNNaN

考题 判断题在文档上输出"HelloWorld"的正确Javascript语法是document.write("HelloWorld")。()A 对B 错

考题 ( 难度:中等)以下哪个不是JavaScript 输出数据的方式()A.window.show()B.document.write()C.consollog()D.window.alert()