To be or not to be.That is a question!

---源于莎士比亚的《哈姆雷特》

导航

上一页 1 2 3 4 5 6 7 8 ··· 12 下一页

2013年11月1日 #

Ember.js demo7

摘要: JS Bin body { font-family: sans-serif; color: #454545;}a { color: blue;}a.active { color: red;}var App = Ember.Application.create();App.Router.map(function() { this.resource('about', function() { this.route('product'); this.route('location'); }); this.resource('login' 阅读全文

posted @ 2013-11-01 10:45 Ijavascript 阅读(171) 评论(0) 推荐(0) 编辑

Ember.js demo5

摘要: Episode 5 body { margin-top: 30px }.active { color: red !important;}var App = Ember.Application.create();App.Router.map(function() { this.resource('user', {path: '/users/:user_id'}); this.resource('editUser', {path: '/users/:user_id/edit'});});App.ApplicationRoute = E 阅读全文

posted @ 2013-11-01 10:43 Ijavascript 阅读(167) 评论(0) 推荐(0) 编辑

Ember.js demo4

摘要: Episode 003 body { margin-top: 30px }.active { color: red !important;} var App = Ember.Application.create();App.Router.map(function() { this.resource('user', {path: '/users/:user_id'});});App.UserRoute = Ember.Route.extend({ model: function(params) { return users[params.user_id]; }}. 阅读全文

posted @ 2013-11-01 10:42 Ijavascript 阅读(213) 评论(0) 推荐(0) 编辑

Ember.js demo1

摘要: JS Bin var App = Ember.Application.create()App.name = "Hello World!";App.secondsOnPage = 0;setInterval(function() { App.set('secondsOnPage', App.get('secondsOnPage') + 1);}, 1000); 阅读全文

posted @ 2013-11-01 10:41 Ijavascript 阅读(287) 评论(0) 推荐(0) 编辑

Ember.js demo3

摘要: JS Bin var App = Ember.Application.create();App.ApplicationRoute = Ember.Route.extend({ model: function() { return users; }});var users = [ { id: 1, first: 'Ryan', last: 'Florence', avatar: 'https://si0.twimg.com/profile_images/3123276865/5c069e64eb7f8e971d36a4540ed7ca... 阅读全文

posted @ 2013-11-01 10:40 Ijavascript 阅读(234) 评论(0) 推荐(0) 编辑

Ember.js demo2

摘要: JS Bin var App = Ember.Application.create();App.ApplicationRoute = Ember.Route.extend({ model: function() { return { name: 'My App', timer: 0 }; }, activate: function() { this.interval = setInterval(function() { var timer = this.get('controller.model.timer'); this.set('contro... 阅读全文

posted @ 2013-11-01 10:39 Ijavascript 阅读(236) 评论(0) 推荐(0) 编辑

2013年10月31日 #

Emberjs View and Route

摘要: index.html --> app.jsvar App = Ember.Application.create();App.ApplicationRoute = Ember.Route.extend({ model: function() { return users; }});var users = [ { id: 1, first: 'Ryan', last: 'Florence', avatar: 'https://si0.twimg.com/prof... 阅读全文

posted @ 2013-10-31 13:49 Ijavascript 阅读(208) 评论(0) 推荐(0) 编辑

2013年10月17日 #

node io.sockt 聊天应用

摘要: index.html app.jsvar app=require('http').createServer(handler), io=require('socket.io').listen(app), fs=require('fs'); app.listen(8080); function handler(req,res){ fs.readFile(__dirname+'/index.html',function(err,data){ if (err) { res.writeHead(500... 阅读全文

posted @ 2013-10-17 15:07 Ijavascript 阅读(304) 评论(0) 推荐(0) 编辑

2013年10月10日 #

angular todo

摘要: Todo {{remaining()}} of {{todos.length}} remaining [ archive ] {{todo.text}} 阅读全文

posted @ 2013-10-10 15:30 Ijavascript 阅读(311) 评论(0) 推荐(0) 编辑

2013年9月26日 #

堆和栈的区别

摘要: 转自网络:在计算机领域,堆栈是一个不容忽视的概念,我们编写的C语言程序基本上都要用到。但对于很多的初学着来说,堆栈是一个很模糊的概念。堆栈:一种数据结构、一个在程序运行时用于存放的地方,这可能是很多初学者的认识,因为我曾经就是这么想的和汇编语言中的堆栈一词混为一谈。我身边的一些编程的朋友以及在网上看帖遇到的朋友中有好多也说不清堆栈,所以我想有必要给大家分享一下我对堆栈的看法,有说的不对的地方请朋友们不吝赐教,这对于大家学习会有很大帮助。数据结构的栈和堆首先在数据结构上要知道堆栈,尽管我们这么称呼它,但实际上堆栈是两种数据结构:堆和栈。 堆和栈都是一种数据项按序排列的数据结构。栈就像装数据的桶或 阅读全文

posted @ 2013-09-26 10:54 Ijavascript 阅读(863) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 ··· 12 下一页