自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 资源 (15)
  • 收藏
  • 关注

原创 javascript核心学习笔记

变量1.       如果没有用var语句给一个变量定初始值,它的初始值就是undefined.2.       尝试给未用var声明的变量赋值,JavaScript会隐式声明该变量。但是,隐式声明的变量总是被创建为全局变量,即使该变量只在一个函数体内使用。3.       函数中声明的变量,无论在哪里声明的,在整个函数中都有定义。4.       变量保存了基本类型的实际值,但是

2009-12-29 11:57:00 531

原创 javascript变量的作用域

 函数中声明的所有变量,无论是在哪里声明的,在整个函数中它们都是有定义的。 var s = new Object(); test(s); function test(o){  var i=0;  if(typeof o == "object"){   var j = 0;   for(var k=0; k    document.write(k+"/n");   }   document.writ

2009-12-27 11:55:00 618

原创 javascript&java数据类型以及数组的初始化比较

一、两种语言所支持的数据类型:1.       javascript3种基本数据类型:数字、文本字符串和布尔值。2种小数据类型:null、undefined1种复合数据类型:object2.       java的8种基本数据类型:int,short,byte,long,char,float,double,boolean。引用类型:String二、特殊的数值      

2009-12-27 11:52:00 2066

原创 javascript调用activeXObject 导出页面表格数据到excel

function makeDataBook(){ var xls = new ActiveXObject ("Excel.Application"); xls.visible = true; var newBook = xls.Workbooks.Add; newBook.Worksheets.Add; newBook.Worksheets(1).Activate; xls

2009-12-01 17:26:00 2741

汇编语言工具包edit+masm+link+lib+debug.rar

windows10汇编语言工具包debug+edit+masm+link

2021-02-06

TheSwiftProgrammingLanguage(Swift4)

“Swift is a fantastic way to write software, whether it’s for phones, desktops, servers, or anything else that runs code. It’s a safe, fast, and interactive programming language that combines the best in modern language thinking with wisdom from the wider Apple engineering culture and the diverse contributions from its open-source community. The compiler is optimized for performance and the language is optimized for development, without compromising on either.” Excerpt From: Apple Inc. “The Swift Programming Language (Swift 4).” iBooks. “Swift is a fantastic way to write software, whether it’s for phones, desktops, servers, or anything else that runs code. It’s a safe, fast, and interactive programming language that combines the best in modern language thinking with wisdom from the wider Apple engineering culture and the diverse contributions from its open-source community. The compiler is optimized for performance and the language is optimized for development, without compromising on either.” Excerpt From: Apple Inc. “The Swift Programming Language (Swift 4).” iBooks. “Swift is a fantastic way to write software, whether it’s for phones, desktops, servers, or anything else that runs code. It’s a safe, fast, and interactive programming language that combines the best in modern language thinking with wisdom from the wider Apple engineering culture and the diverse contributions from its open-source community. The compiler is optimized for performance and the language is optimized for development, without compromising on either.” Excerpt From: Apple Inc. “The Swift Programming Language (Swift 4).” iBooks.

2017-09-17

TCP.IP.Sockets.in.Java.2nd.Edition.pdf (TCP/IP Socket 编程)

TCP/IP Socket 编程 英文原版,必看中文的扫描版舒服多了,很清晰

2014-06-27

IBM_3650_服务器_windows_2003_2008__双网卡绑定.docx

IBM_3650_服务器_windows_2003_2008__双网卡绑定.docx

2010-12-03

商品条码_零售商品编码与条码 编码生成 国家标准

商品条码_零售商品编码与条码 编码生成 国家标准

2010-11-23

RHEL6+beta+安装过程首发.pdf

RHEL6+beta+安装过程首发.pdf

2010-10-06

《代码之美》完整版 pdf

《代码之美》完整版 下载 pdf 格式

2010-10-03

JSP Ajax树形菜单完整示例

JSP Ajax树形菜单 数据查询节点 非常实用

2010-04-02

25个精美网页模板 经典 简约

珍藏的25个精美网页模板,值得学习和借鉴,希望对大家有用!

2010-02-05

精通javascript

从javascript到ajax的原理,讲的挺好的,感觉值得一读,希望对大家有帮助的,呵呵

2009-07-10

android 中文教程

android 台湾作家 高焕堂 作品 android 程式设计36技

2009-03-01

字符串正则表达式PPT

了解Object类 掌握 String 类用法 掌握StringBuffer类用法 掌握StringTokenizer类用法 了解正则表达式

2008-10-31

JSP分页的电子书轻松解决分页问题

JSP分页技术,教你轻松解决分页问题。我找到的资源分享给大家,大家看一下

2008-09-02

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除