上一页 1 ··· 489 490 491 492 493 494 495 496 497 ··· 499 下一页
摘要: Our first step is to add a template to the AppointmentForm below. Have the template produce a form with two inputs, one for the title of the appointme 阅读全文
posted @ 2014-08-09 03:25 Zhentiw 阅读(187) 评论(0) 推荐(0)
摘要: Below we have our AppointmentsView instance rendering and then taking the rendered HTML and inserting into the$('#app') element. Change the code to in 阅读全文
posted @ 2014-08-08 22:35 Zhentiw 阅读(181) 评论(0) 推荐(0)
摘要: Duplication is Bad. Let's DRY (Don't Repeat Yourself) our routes to make /pp:per_page an optional part of the pageroute. var AppRouter = new (Backbone 阅读全文
posted @ 2014-08-08 21:08 Zhentiw 阅读(195) 评论(0) 推荐(0)
摘要: 如果在一个容器中的子元素使用了position:absolute, 那么他可能会跑出父元素的框架范围。 如果想限定子元素在付元素的框架范围,可以在父元素上加position:relative; 对于一个父元素,比如bigWrapper, mainHeader, mainFooter 可以加上posi 阅读全文
posted @ 2014-08-08 15:25 Zhentiw 阅读(195) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html> <head> <link rel="stylesheet" href="index.css" /> </head> <div class="db group"> <!-- 在含有float的容器中家group class--> <div id="l" s 阅读全文
posted @ 2014-08-08 03:34 Zhentiw 阅读(288) 评论(0) 推荐(0)
摘要: var vehicle1 = {type: "Motorboat", capacity: 6, storedAt: "Ammunition Depot"}; var vehicle2 = {type: "Jet Ski", capacity: 1, storedAt: "Reef Dock"}; v 阅读全文
posted @ 2014-08-08 00:31 Zhentiw 阅读(242) 评论(0) 推荐(0)
摘要: // Get /appointments{ "per_page": 10, "page": 1, "total": 50, "appointments": [ { "title": "Ms. Kitty Hairball Treatment", "cankelled": false, "identi 阅读全文
posted @ 2014-08-07 18:56 Zhentiw 阅读(266) 评论(0) 推荐(0)
摘要: The good Dr. recently had another team implement the server and they slightly messed up the format of the JSON returned for Appointment data. Instead 阅读全文
posted @ 2014-08-07 16:38 Zhentiw 阅读(205) 评论(0) 推荐(0)
摘要: 1. Ceate a route Class var AppRouter = Backbone.Router.extend({ }); 2. Add a route name it "show", listene to 'appointments/:id' var AppRouter = Backb 阅读全文
posted @ 2014-08-07 14:04 Zhentiw 阅读(199) 评论(0) 推荐(0)
摘要: First, memory is set aside for all necessary variables and declared functions. Function expression never got hosited in Javascirpt. Therefore, you can 阅读全文
posted @ 2014-08-05 16:21 Zhentiw 阅读(297) 评论(0) 推荐(0)
上一页 1 ··· 489 490 491 492 493 494 495 496 497 ··· 499 下一页