Fork me on GitHub

随笔分类 -  Javascript

摘要:Ref:CH01 Ref:CH02 Ref:CH03 Ref:CH04 Ref:CH05 Ref:CH06 Ref:CH07 阅读全文
posted @ 2017-08-03 00:14 Nick.Chung 阅读(495) 评论(0) 推荐(0) 编辑
摘要:Ref:Java & Spring Boot Ref:服务架构 Ref:开源实验室 Ref:老马说编程 Ref:iOS 以及等等 Ref:SwiftCafe Ref:技术分享小站 Ref:golang开发 Ref:AndroidDeveloper Ref:Python中文社区 Ref:iOS与swi 阅读全文
posted @ 2017-05-24 11:13 Nick.Chung 阅读(369) 评论(0) 推荐(0) 编辑
摘要:Ramda A practical functional library for JavaScript programmers. Why Ramda? There are already several excellent libraries with a functional flavor. Ty 阅读全文
posted @ 2017-01-13 00:58 Nick.Chung 阅读(465) 评论(0) 推荐(0) 编辑
摘要:Html5 Boilerplate https://html5boilerplate.com https://github.com/h5bp/html5-boilerplate/wiki/sites http://www.initializr.com Component & Ranking http 阅读全文
posted @ 2016-11-12 01:49 Nick.Chung 阅读(411) 评论(0) 推荐(0) 编辑
摘要:Life Cycle: Communication: Ref:React Native 中组件的生命周期 Ref:React Native通信机制详解 Ref:Communication between native and React Native Ref:http://www.cnblogs.c 阅读全文
posted @ 2016-06-24 15:08 Nick.Chung 阅读(716) 评论(0) 推荐(0) 编辑
摘要:The Meteor framework is a series of 100% open source projects (MIT license) that combine to create a complete JavaScript App Platform for full stack r 阅读全文
posted @ 2016-04-12 17:13 Nick.Chung 阅读(373) 评论(0) 推荐(0) 编辑
摘要:TypeScript lets you write JavaScript the way you really want to.TypeScript is a typed superset of JavaScript that compiles to plain JavaScript.Any bro... 阅读全文
posted @ 2016-01-06 17:38 Nick.Chung 阅读(179) 评论(0) 推荐(0) 编辑
摘要:Welcome to the Appcelerator Platform! The Appcelerator Platform extends Appcelerator's Titanium platform to help you manage the entire lifecycle of th... 阅读全文
posted @ 2015-08-16 12:02 Nick.Chung 阅读(273) 评论(0) 推荐(0) 编辑
摘要:在这个时间开始学习移动开发真是最好不过了,每个人应该都有一些移动应用的创意,而且你并不需要任何的原生应用编程经验,你只需要一些HTML的相关知识,懂一些CSS和JavaScript就够了。如果你总听别人说HTML5的移动应用太慢,我只能告诉你应该有一些主见,首先HTML5会越来越好,移动端的硬件也会... 阅读全文
posted @ 2015-07-30 17:36 Nick.Chung 阅读(292) 评论(0) 推荐(0) 编辑
摘要:React Native enables you to build world-class application experiences on native platforms using a consistent developer experience based on JavaScript 阅读全文
posted @ 2015-07-26 22:52 Nick.Chung 阅读(894) 评论(0) 推荐(0) 编辑
摘要:Apache Cordova is a set of device APIs that allow a mobile app developer to access native device function such as the camera or accelerometer from Jav... 阅读全文
posted @ 2015-07-23 19:19 Nick.Chung 阅读(266) 评论(0) 推荐(0) 编辑
摘要:CoffeeScript 是一门编译到 JavaScript 的小巧语言.在 Java 般笨拙的外表下, JavaScript 其实有着一颗华丽的心脏. CoffeeScript 尝试用简洁的方式展示 JavaScript 优秀的部分.CoffeeScript 的指导原则是:"她仅仅是 JavaSc... 阅读全文
posted @ 2015-06-02 14:01 Nick.Chung 阅读(273) 评论(0) 推荐(0) 编辑
摘要:MEAN.JS is a full-stack JavaScript open-source solution, which provides a solid starting point for MongoDB, Node.js, Express, and AngularJS based appl 阅读全文
posted @ 2015-04-21 12:23 Nick.Chung 阅读(320) 评论(0) 推荐(0) 编辑
摘要:Node.js® is a platform built on Chrome's JavaScript runtime for easily building fast, scalable network applications. Node.js uses an event-driven, non 阅读全文
posted @ 2015-01-27 12:38 Nick.Chung 阅读(228) 评论(0) 推荐(0) 编辑
摘要:jQuery Mobile is a touch-optimized HTML5 UI framework designed to make responsive web sites and apps that are accessible on all smartphone, tablet and desktop devices.Ref:http://demos.jquerymobile.com/1.4.1/ Page Title 審批信息 批示意見: ... 阅读全文
posted @ 2014-02-20 12:08 Nick.Chung 阅读(383) 评论(0) 推荐(0) 编辑
摘要://注销登录信息 function logOut() { document.execCommand("ClearAuthenticationCache"); window.location.href = "Default.aspx"; } 阅读全文
posted @ 2012-11-23 17:06 Nick.Chung 阅读(338) 评论(0) 推荐(0) 编辑
摘要:var emptyObject1 = {}; //创建空对象var emptyObject2 = new Object(); //创建空对象var person = {"name":"sdcyst", "age":18, "sex":"male"}; //创建一个包含初始值的对象personalert(person.name); //sdcystalert(person["age"]); //18var person = {};person.name = "sdcy 阅读全文
posted @ 2012-11-23 15:05 Nick.Chung 阅读(186) 评论(0) 推荐(0) 编辑
摘要:function progress() { var value = $('#p').progressbar('getValue'); if (value < 100) { value += Math.floor(Math.random() * 10); $('#p').progressbar('setValue', value); var invoker = arguments.callee.caller || null; if (invoker != null) { ... 阅读全文
posted @ 2012-11-23 14:44 Nick.Chung 阅读(212) 评论(0) 推荐(0) 编辑