05 2012 档案

摘要:<script language="javascript"> //变量存一组数据 x=60; y=65; z=70; p=75; q=80; a=85; document.write("变量输出:<br>"); document.write(x+"<br>"); document.write(y+"<br>"); document.write(z+"<br>"); document.write(p+"<br>&qu 阅读全文
posted @ 2012-05-27 16:51 人生旅途 阅读(88) 评论(0) 推荐(0)
摘要:<script language="javascript"> //变量的创建/定义/声明,就是在内存中标识2一个空间 //隐式声明 x=9;//使用的时候由系统自动创建,一旦创建可以反复使用 x=10; x=99; //显示</script> 阅读全文
posted @ 2012-05-27 16:50 人生旅途 阅读(91) 评论(0) 推荐(0)