书籍详情
《企业级Web开发》[29M]百度网盘|亲测有效|pdf下载
  • 企业级Web开发

  • 出版社:南京东南大学出版社
  • 出版时间:2015-08
  • 热度:9612
  • 上架时间:2024-06-30 09:08:33
  • 价格:0.0
书籍下载
书籍预览
免责声明

本站支持尊重有效期内的版权/著作权,所有的资源均来自于互联网网友分享或网盘资源,一旦发现资源涉及侵权,将立即删除。希望所有用户一同监督并反馈问题,如有侵权请联系站长或发送邮件到ebook666@outlook.com,本站将立马改正

内容介绍

内容简介

  如果你想利用HTML5语言构建你的企业的下一代Web应用,《企业级Web开发(影印版 英文版)》可以帮助你利用不同的框架、库和开发选项达到目的。
  在《企业级Web开发(影印版 英文版)》中,你将会通过亲手编写一个Web应用程序的多个版本学习到不同的方法,这样你将可以为你的企业制定正确的策略。
  模块化、安全和测试驱动开发是什么?通过大量可行的代码实例,《企业级Web开发(影印版 英文版)》将会帮助WeD应用开发者和软件架构师掌握日益流行的HTML5和JavaScript。

目录

Preface
Introduction

Part Ⅰ. BuildingYourApplication
1. Mocking Up the Save The Child Application
Considering Mobile First
Introducing Balsamiq Mockups
The Project Owner Talks to a Web Designer
Creating First Mockups
Turning Mockups into a Prototype
Single-Page Applications
Running Code Examples from WebStorm
Our First Prototype
Our Main Page JavaScript
The Footer Section
The Donate Section
Adding Video
Adding the HTML5 Video Element
Embedding YouTube Videos
Adding Geolocation Support
Geolocation Basics
Integration with Google Maps
Browser Feature Detection with Modernizr
Search and Multimarkers with Google Maps
Summary
2. Using Ajax and JSON
Understanding Ajax
Understanding JSON
Working with Ajax
Retrieving Data from the Server
Ajax: Good and Bad
Populating States and Countries from HTML Files
Using JSON
Populating States and Countries from JSON Files
Using Arrays in JSON
Loading Charity Events by Using Ajax and JSON
Using JSON in CMS
Handling JSON in Java
Compressing JSON
Adding Charts to Save The Child
Adding a Chart with the Canvas Element
Adding a Chart by Using SVG
Loading Data from Other Servers by Using JSONP
Beer and JSONP
Summary
3. Introducing the jQuety Library
Getting Started with jQuery
Hello World
Using Selectors and Filters
Testing jQuery Code with JSFiddle
Filtering Elements
Handling Events
Attaching Event Handlers and Elements by Using the Method on()
Delegating Events
Using Ajax with jQuery
Handy Shorthand Methods
Programming Save The Child by Using jQuery
Login and Donate
Loading HTML States and Countries by Using jQuery Ajax
Loading JSON States and Countries by Using jQuery Ajax
Submitting the Donate Form
Using jQuery Plug-ins
Validating the Donate Form by Using a Plug-in
Adding an Image Slider
Summary

Part Ⅱ. Enterprise Considerations
4. Developing Web Applications in the Ext JS Framework
5. Selected Productivity Tools for Enterprise Developers
6. Modularizing Large-Scale JavaScript Projects
7. Test-Driven Development with JavaScript
8. Upgrading HTTP to WebSocket
9. Introduction to Web Application Security

Part Ⅲ. Responsive Web Design and Mobile Devices
10. Responsive Design: One Site Fits All
11. jQuery Mobile
12. SenchaTouch
13. Hybrid Mobile Applications
14. Epilogue

A. Selected HTML5 APIs
B. Running Code Samples and IDE

Index

精彩书摘

  《企业级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.
  ……