以下哪段代码不能正确创建函数show()?()
A、function show(text){ alert(text); }
B、var showFun = function show(text){ alert(text); }
C、var showFun = function(text){ alert(text); }
D、var showFun =new function("text" , "alert(text)"};
A、function show(text){ alert(text); }
B、var showFun = function show(text){ alert(text); }
C、var showFun = function(text){ alert(text); }
D、var showFun =new function("text" , "alert(text)"};
A、var color = aa.style.color B、aa.style.color = ‘blue’ C、var width = aa.borderWidth D、var style = aa.style.borderBottomStyle
A、创建一个类支持DLL函数,然后使用托管代码创建原型方法。 B、使用COM注册您的程序集,然后从COM中参考您的托管代码。 C、为托管代码创建一个类库。 D、导入一个类库。然后创建COM对象的实例
A、A.shortmyshort=99S; B、B.Stringname=’ExcellenttutorialMrGreen’; C、C.charc=17c; D、D.intz=015;
A、window.setTimeout(1000,expression); B、window.setTimeout(expression,1); C、window.setTimeout(1,expression); D、window.setTimeout(expression,1000);