上一页 1 ··· 448 449 450 451 452 453 454 455 456 ··· 458 下一页
摘要: Sometime, use can rewrite the toString , valueOf method to make those function more useful: For exmaple, we can make valueOf() function to calcualte t 阅读全文
posted @ 2014-08-11 02:53 Zhentiw 阅读(226) 评论(0) 推荐(0) 编辑
摘要: function Fencepost (x, y, postNum){ this.x = x; this.y = y; this.postNum = postNum; this.connectionsTo = []; } Fencepost.prototype = { sendRopeTo: fun 阅读全文
posted @ 2014-08-10 17:59 Zhentiw 阅读(161) 评论(0) 推荐(0) 编辑
摘要: You can add prototype to any object in Jacascript likes Object, Array, String... prototype 有继承的作用,比如说我有一个String的对象,我可以访问Object的prototype hasPrototype( 阅读全文
posted @ 2014-08-10 02:32 Zhentiw 阅读(176) 评论(0) 推荐(0) 编辑
摘要: Convert the AppointmentForm view below to use Mustache templating. Make sure you remember to change the <%= %> placeholders with Mustache's {{}} place 阅读全文
posted @ 2014-08-09 17:52 Zhentiw 阅读(180) 评论(0) 推荐(0) 编辑
摘要: 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 阅读(175) 评论(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 阅读(167) 评论(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 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 如果在一个容器中的子元素使用了position:absolute, 那么他可能会跑出父元素的框架范围。 如果想限定子元素在付元素的框架范围,可以在父元素上加position:relative; 对于一个父元素,比如bigWrapper, mainHeader, mainFooter 可以加上posi 阅读全文
posted @ 2014-08-08 15:25 Zhentiw 阅读(185) 评论(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 阅读(280) 评论(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 阅读(227) 评论(0) 推荐(0) 编辑
上一页 1 ··· 448 449 450 451 452 453 454 455 456 ··· 458 下一页