随笔分类 - Javascript
摘要:Ref:CH01 Ref:CH02 Ref:CH03 Ref:CH04 Ref:CH05 Ref:CH06 Ref:CH07
阅读全文
摘要:Ref:Java & Spring Boot Ref:服务架构 Ref:开源实验室 Ref:老马说编程 Ref:iOS 以及等等 Ref:SwiftCafe Ref:技术分享小站 Ref:golang开发 Ref:AndroidDeveloper Ref:Python中文社区 Ref:iOS与swi
阅读全文
摘要:Ramda A practical functional library for JavaScript programmers. Why Ramda? There are already several excellent libraries with a functional flavor. Ty
阅读全文
摘要:Html5 Boilerplate https://html5boilerplate.com https://github.com/h5bp/html5-boilerplate/wiki/sites http://www.initializr.com Component & Ranking http
阅读全文
摘要:Life Cycle: Communication: Ref:React Native 中组件的生命周期 Ref:React Native通信机制详解 Ref:Communication between native and React Native Ref:http://www.cnblogs.c
阅读全文
摘要: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
阅读全文
摘要: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...
阅读全文
摘要:Welcome to the Appcelerator Platform! The Appcelerator Platform extends Appcelerator's Titanium platform to help you manage the entire lifecycle of th...
阅读全文
摘要:在这个时间开始学习移动开发真是最好不过了,每个人应该都有一些移动应用的创意,而且你并不需要任何的原生应用编程经验,你只需要一些HTML的相关知识,懂一些CSS和JavaScript就够了。如果你总听别人说HTML5的移动应用太慢,我只能告诉你应该有一些主见,首先HTML5会越来越好,移动端的硬件也会...
阅读全文
摘要:React Native enables you to build world-class application experiences on native platforms using a consistent developer experience based on JavaScript
阅读全文
摘要: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...
阅读全文
摘要:CoffeeScript 是一门编译到 JavaScript 的小巧语言.在 Java 般笨拙的外表下, JavaScript 其实有着一颗华丽的心脏. CoffeeScript 尝试用简洁的方式展示 JavaScript 优秀的部分.CoffeeScript 的指导原则是:"她仅仅是 JavaSc...
阅读全文
摘要: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
阅读全文
摘要: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
阅读全文
摘要: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 審批信息 批示意見: ...
阅读全文
摘要://注销登录信息 function logOut() { document.execCommand("ClearAuthenticationCache"); window.location.href = "Default.aspx"; }
阅读全文
摘要: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
阅读全文
摘要: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) { ...
阅读全文