摘要:
1JavaScript的数据类型: 5种基本:string boolean number null undefined 复杂类型:object array date regexp function 2. 1.没有内容就是undefined,这个就是false 2.0就是false,1是true 3. 阅读全文
摘要:
1. Boolean类型转换: 1.对于String:只有非空字符串为真 2.对于Number:除了0和NaN之外都为真 3.对于Boolean:true为真 4.对于Object:除了null之外都为真 5.undefined为false; 1 <html> 2 <body> 3 <script 阅读全文
摘要:
1. var x = new Boolean(false); if (x) { alert('hi'); } var y = Boolean(0); if (y) { alert('hello'); } 第一句 var x = new Boolean(false); ifX这里这里期望 x 是一个布 阅读全文
摘要:
恢复内容开始 1.哪一个是javascript中array的正确写法?1 1 var txt = new Array("tim","kim","jim") 2 var txt = new Array="tim","kim","jim" 3 var txt = new Array:1=("tim")2 阅读全文
摘要:
1. 下面给定的代码中, myFunc() 返回什么? var foo=’foo’; var bar=’bar’; function myFunc() { return foo+bar; } foobar +就是字符串拼接 2.有如下代码片段: var a=[]; a[0]=1; a[1]=2; a 阅读全文
摘要:
1.请问在javascript程序中,alert(undefined==null)的输出结果是 true 2.JavaScript中document.getElementById的返回值的类型为? object 3在jquery中想要实现通过远程http get请求载入信息功能的是下面的哪一下事件? 阅读全文
摘要:
1.以 下语句的执行结果是什么? 最后执行settimeout所以是one two three 2.var str1=new RegExp("e");document.write(str1.exec("hello"));以上代码输出结果为( ) e exec()接受一个参数,即要应用模式的字符串,然 阅读全文
摘要:
1.分析下面javascript代码: 1 <script> 2 function out(x){ 3 var temp = 2; 4 function inside(y){ 5 document.write( x + y + (temp--)); 6 } 7 inside(5); 8 } 9 ou 阅读全文