企业级Web开发 pdf下载
限时特惠
00:00:00
活动结束后恢复原价
纸质书参考价
¥23
电子版限时价
¥5.99
省 18 元
选择版本
内容简介
本篇主要提供企业级Web开发电子书的pdf版本下载,本电子书下载方式为百度网盘方式,点击以上按钮下单完成后即会通过邮件和网页的方式发货,有问题请联系邮箱ebook666@outlook.com
内容简介
如果你想利用HTML5语言构建你的企业的下一代Web应用,《企业级Web开发(影印版 英文版)》可以帮助你利用不同的框架、库和开发选项达到目的。
在《企业级Web开发(影印版 英文版)》中,你将会通过亲手编写一个Web应用程序的多个版本学习到不同的方法,这样你将可以为你的企业制定正确的策略。
模块化、安全和测试驱动开发是什么?通过大量可行的代码实例,《企业级Web开发(影印版 英文版)》将会帮助WeD应用开发者和软件架构师掌握日益流行的HTML5和JavaScript。
在《企业级Web开发(影印版 英文版)》中,你将会通过亲手编写一个Web应用程序的多个版本学习到不同的方法,这样你将可以为你的企业制定正确的策略。
模块化、安全和测试驱动开发是什么?通过大量可行的代码实例,《企业级Web开发(影印版 英文版)》将会帮助WeD应用开发者和软件架构师掌握日益流行的HTML5和JavaScript。
精彩书摘
《企业级Web开发(影印版 英文版)》:
When the buttonis clicked, the event bubbles up and reaches the container'slevel,whose click handler will do the processing (jQuery doesn't support the capturing phase of events).The work on processing clicks for digit buttons is delegated to the container.
Another good use case for delegating event processing to a container is a financial application that displays the data in an HTML table containing hundreds of rows.Instead of assigning hundreds of event handlers (one per table row), assign one to the table.There is one extra benefit to using delegation in this case: if the application can dy—namically add new rows to this table (say, the order execution data), there is no need to explicitly assign event handlers to them; the container will do the processing for both old and new rows.
……
When the buttonis clicked, the event bubbles up and reaches the container'slevel,whose click handler will do the processing (jQuery doesn't support the capturing phase of events).The work on processing clicks for digit buttons is delegated to the container.
Another good use case for delegating event processing to a container is a financial application that displays the data in an HTML table containing hundreds of rows.Instead of assigning hundreds of event handlers (one per table row), assign one to the table.There is one extra benefit to using delegation in this case: if the application can dy—namically add new rows to this table (say, the order execution data), there is no need to explicitly assign event handlers to them; the container will do the processing for both old and new rows.
……