题目内容

在Javascript中,运行下面代码的结果是 function foo(x){ var num=5; bar=function(y){ return (x+y+(++num)); } } console.log(foo(2)); console.log(bar(10)); console.log(bar(10));(2.0)

A. undefined,18,19
B. 17,18,19
C. 5,18,19
D. undefined,18,18

查看答案
更多问题

阅读下面的JavaScript代码,输出结果是() function f(y) { var x=y*y; return x; } for(x=0;x< 5;x++) { y=f(x); document.write(y); }(2.0)

A. 0 1 2 3 4
B. 0 1 4 9 16
C. 0 1 4 9 16 25
D. 以上答案都不对

JavaScript函数说法正确的是()(2.0)

A. 不可以传参
B. 可以接受参数
C. 没有返回类型
D. 没有return关键字

使用animate方法实现与代码$("div").fadeIn(600)相同效果的代码写法是()(2.0)

A. $("div").animate({"opacity":"1"})
B. $("div").animate({"opacity":"1"},"fast")
C. $("div").animate({"opacity":"1"},600)
D. $("div").animate({"opacity":"1"},"normal")

关于jQuery中自定义动画方法animate()的使用方法,正确的是()(2.0)

A. $("div").animate(400,{"width":"100px","height":"100px"})
B. $("div").animate("width",100px")
C. $("div").animate({"height":"500px","width":"500px"})
D. $("div").animate({"height":"+=50px"})

答案查题题库