917 foundations of ajax

297 123 0
917 foundations of ajax

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

Thông tin tài liệu

Foundations of Ajax Ryan Asleson Nathaniel T Schutta www.it-ebooks.info Foundations of Ajax Copyright © 2006 by Ryan Asleson and Nathaniel T Schutta All rights reserved No part of this work may be reproduced or transmitted in any form or by any means, electronic or mechanical, including photocopying, recording, or by any information storage or retrieval system, without the prior written permission of the copyright owner and the publisher ISBN (pbk): 1-59059-582-3 Printed and bound in the United States of America Trademarked names may appear in this book Rather than use a trademark symbol with every occurrence of a trademarked name, we use the names only in an editorial fashion and to the benefit of the trademark owner, with no intention of infringement of the trademark Lead Editor: Ewan Buckingham Technical Reviewer: Keith Harvey Editorial Board: Steve Anglin, Dan Appleman, Ewan Buckingham, Gary Cornell, Tony Davis, Jason Gilmore, Jonathan Hassell, Chris Mills, Dominic Shakeshaft, Jim Sumser Production Director and Project Manager: Grace Wong Copy Edit Manager: Nicole LeClerc Copy Editor: Kim Wimpsett Assistant Production Director: Kari Brooks-Copony Production Editor: Linda Marousek Compositor: Linda Weidemann, Wolf Creek Press Proofreader: Patrick Vincent Indexer: Tim Tate Artist: Kinetic Publishing Services, LLC Interior Designer: Van Winkle Design Group Cover Designer: Kurt Krames Manufacturing Director: Tom Debolski Distributed to the book trade worldwide by Springer-Verlag New York, Inc., 233 Spring Street, 6th Floor, New York, NY 10013 Phone 1-800-SPRINGER, fax 201-348-4505, e-mail orders-ny@springer-sbm.com, or visit http://www.springeronline.com For information on translations, please contact Apress directly at 2560 Ninth Street, Suite 219, Berkeley, CA 94710 Phone 510-549-5930, fax 510-549-5939, e-mail info@apress.com, or visit http://www.apress.com The information in this book is distributed on an “as is” basis, without warranty Although every precaution has been taken in the preparation of this work, neither the author(s) nor Apress shall have any liability to any person or entity with respect to any loss or damage caused or alleged to be caused directly or indirectly by the information contained in this work The source code for this book is available to readers at http://www.apress.com in the Source Code section www.it-ebooks.info For Sara and Adam —Ryan Asleson To Christine, without whom none of this would matter —Nathaniel T Schutta www.it-ebooks.info www.it-ebooks.info Contents at a Glance About the Authors xiii About the Technical Reviewer xv Acknowledgments xvii Introduction xix ■CHAPTER ■CHAPTER ■CHAPTER ■CHAPTER Introducing Ajax Using the XMLHttpRequest Object 23 Communicating with the Server: Sending Requests and Processing Responses 39 Implementing Basic Ajax Techniques 75 Building the Ultimate Ajax Developer’s Toolbox 131 Testing JavaScript with JsUnit 161 Exploring JavaScript Debugging Tools and Techniques 193 Putting It All Together 219 ■APPENDIX A Developing Cross-Browser JavaScript 251 ■APPENDIX B Introducing Ajax Frameworks 257 ■CHAPTER ■CHAPTER ■CHAPTER ■CHAPTER ■INDEX 265 v www.it-ebooks.info www.it-ebooks.info Contents About the Authors xiii About the Technical Reviewer xv Acknowledgments xvii Introduction xix ■CHAPTER Introducing Ajax .1 A Short History of Web Applications Browser History The Evolution of Web Applications CGI Applets JavaScript Servlets and ASPs and PHP Oh My! Flash The DHTML Revolution 10 The XML Derivatives 10 The Fundamental Problem 12 Ajax 13 The Usability Question 16 The Skill Set 17 Usage 19 Design Considerations 20 Summary 20 ■CHAPTER Using the XMLHttpRequest Object 23 Overview of the XMLHttpRequest Object 23 Methods and Properties 24 An Example Interaction 26 GET vs POST 28 Remote Scripting 29 Overview of Remote Scripting 29 A Remote Scripting Example 29 vii www.it-ebooks.info viii ■CONTENTS How to Send a Simple Request 31 A Simple Request Example 32 A Word About Security 34 DOM Level Load and Save 35 The DOM 36 Summary 37 ■CHAPTER Communicating with the Server: Sending Requests and Processing Responses 39 Processing the Server Response 39 Using the innerHTML Property to Create Dynamic Content 39 Parsing the Response As XML 42 Dynamically Editing Page Content with the W3C DOM 48 Sending Request Parameters 55 Sending Request Parameters As XML 62 Sending Data to the Server Using JSON 67 Summary 73 ■CHAPTER Implementing Basic Ajax Techniques 75 Performing Validation 75 Reading Response Headers 79 Dynamically Loading List Boxes 83 Creating an Autorefreshing Page 90 Displaying a Progress Bar 95 Creating Tooltips 101 Dynamically Updating a Web Page 106 Accessing Web Services 115 Providing Autocomplete 122 Summary 128 ■CHAPTER Building the Ultimate Ajax Developer’s Toolbox 131 Documenting JavaScript Code with JSDoc 131 Installation 132 Usage 132 Validating HTML Content with Firefox Extensions 135 HTML Validator 136 Checky 138 www.it-ebooks.info ■CONTENTS Searching for Nodes Using DOM Inspector 140 Performing JavaScript Syntax Checking with JSLint 143 Performing JavaScript Compression and Obfuscation 145 Using the Web Developer Extension for Firefox 147 Implementing Advanced JavaScript Techniques 148 Object-Oriented JavaScript via the prototype Property 148 Private Properties and Information Hiding with JavaScript 153 Classical Inheritance in JavaScript 154 Putting It All Together 155 Summary 158 ■CHAPTER Testing JavaScript with JsUnit 161 Rising to the JavaScript Challenge 161 Introducing the Test-First Approach 161 Introducing JUnit 163 Exploring JsUnit 164 Getting Started 164 Writing Tests 164 Running Tests 179 Using Standard and Custom Query Strings 184 Working with JsUnit Server 189 Getting Help 191 What Else Can You Use? 192 Summary 192 ■CHAPTER Exploring JavaScript Debugging Tools and Techniques 193 Debugging Ajax Requests with Greasemonkey 193 Introducing Greasemonkey 194 Using an XMLHttpRequest Debugging User Script for Greasemonkey 194 Inspecting Ajax Requests and Responses with the XMLHttpRequest Debugging User Script 194 Debugging JavaScript 196 Using Firefox JavaScript Console 197 Using Microsoft Script Debugger 198 Using Venkman 201 Summary 217 www.it-ebooks.info ix x ■CONTENTS ■CHAPTER Putting It All Together 219 Introducing Patterns 219 Implementing the Fade Anything Technique (FAT) 219 Implementing Auto Refresh 220 Implementing a Partial Page Paint 220 Implementing a Draggable DOM 221 Avoiding Common Gotchas 222 Learning Where to Go for More 224 Using a Framework 226 Introducing Taconite 226 The Theory of Taconite 227 The Solution 227 What Does Taconite Do with the Content? 228 Introducing Dashboard Applications 229 Building the Ajax Dashboard with Taconite 230 Introducing the General Features 230 Introducing the Design Features 232 Analyzing the Code 233 Analyzing the Weather Forecast Component 235 Analyzing the Headline News Component 242 How Does the Automatic Refreshing Work? 245 Building a Better Autocomplete 247 Summary 249 ■APPENDIX A Developing Cross-Browser JavaScript 251 Appending Rows to a Table 251 Setting an Element’s Style via JavaScript 252 Setting an Element’s class Attribute 253 Creating Input Elements 253 Adding Event Handlers to Input Elements 254 Creating Radio Buttons 255 Summary 256 www.it-ebooks.info ... advanced Ajax techniques and demonstrates how easy Ajax development can be when using a prebuilt Ajax framework Using a framework shields you from some of the more mundane tasks of Ajax development,... B summarizes some of the most popular Ajax frameworks and libraries that are available to simplify the adoption of Ajax techniques The number of frameworks is sure to grow as Ajax becomes more... the seeds for this book were sown An Overview of This Book Foundations of Ajax is written to give you, the developer, all the tools you need to add Ajax techniques to your existing or future applications

Ngày đăng: 06/03/2019, 16:37

Mục lục

  • Contents at a Glance

  • Table of Content

  • Chapter 1 - Introducing Ajax

    • A Short History of Web Applications

    • Browser History

    • The Evolution of Web Applications

      • CGI

      • Applets

      • JavaScript

      • Servlets and ASPs and PHP . . .Oh My!

      • Flash

      • The DHTML Revolution

      • The XML Derivatives

      • The Fundamental Problem

      • Ajax

    • The Usability Question

    • The Skill Set

    • Usage

    • Design Considerations

    • Summary

  • Chapter 2 - Using the XMLHttpRequest Object

    • Overview of the XMLHttpRequest Object

    • Methods and Properties

    • An Example Interaction

    • GET vs. POST

    • Remote Scripting

      • Overview of Remote Scripting

      • A Remote Scripting Example

    • How to Send a Simple Request

      • A Simple Request Example

      • A Word About Security

    • DOM Level 3 Load and Save

    • The DOM

    • Summary

  • Chapter 3 - Communicating with the Server:

    • Processing the Server Response

      • Using the innerHTML Property to Create Dynamic Content

      • Parsing the Response As XML

      • Dynamically Editing Page Content with the W3C DOM

    • Sending Request Parameters

      • Sending Request Parameters As XML

      • Sending Data to the Server Using JSON

    • Summary

  • Chapter 4 - Implementing Basic Ajax Techniques

    • Performing Validation

    • Reading Response Headers

    • Dynamically Loading List Boxes

    • Creating an Autorefreshing Page

    • Displaying a Progress Bar

    • Creating Tooltips

    • Dynamically Updating a Web Page

    • Accessing Web Services

    • Providing Autocomplete

    • Summary

  • Chapter 5 - Building the Ultimate Ajax Developer’s Toolbox

    • Documenting JavaScript Code with JSDoc

      • Installation

      • Usage

    • Validating HTML Content with Firefox Extensions

      • HTML Validator

      • Checky

    • Searching for Nodes Using DOM Inspector

    • Performing JavaScript Syntax Checking with JSLint

    • Performing JavaScript Compression and Obfuscation

    • Using the Web Developer Extension for Firefox

    • Implementing Advanced JavaScript Techniques

      • Object-Oriented JavaScript via the prototype Property

      • Private Properties and Information Hiding with JavaScript

      • Classical Inheritance in JavaScript

      • Putting It All Together

    • Summary

  • Chapter 6 - Testing JavaScript with JsUnit

    • Rising to the JavaScript Challenge

      • Introducing the Test-First Approach

      • Introducing JUnit

    • Exploring JsUnit

      • Getting Started

      • Writing Tests

      • Running Tests

      • Using Standard and Custom Query Strings

      • Working with JsUnit Server

      • Getting Help

      • What Else Can You Use?

    • Summary

  • Chapter 7 - Exploring JavaScript Debugging

    • Debugging Ajax Requests with Greasemonkey

      • Introducing Greasemonkey

      • Using an XMLHttpRequest Debugging User Scriptfor Greasemonkey

      • Inspecting Ajax Requests and Responses with theXMLHttpRequest Debugging User Script

    • Debugging JavaScript

      • Using Firefox JavaScript Console

      • Using Microsoft Script Debugger

      • Using Venkman

    • Summary

  • Chapter 8 - Putting It All Together

    • Introducing Patterns

      • Implementing the Fade Anything Technique (FAT)

      • Implementing Auto Refresh

      • Implementing a Partial Page Paint

      • Implementing a Draggable DOM

    • Avoiding Common Gotchas

    • Learning Where to Go for More

    • Using a Framework

    • Introducing Taconite

      • The Theory of Taconite

      • The Solution

      • What Does Taconite Do with the Content?

    • Introducing Dashboard Applications

    • Building the Ajax Dashboard with Taconite

      • Introducing the General Features

      • Introducing the Design Features

      • Analyzing the Code

      • Analyzing the Weather Forecast Component

      • Analyzing the Headline News Component

      • How Does the Automatic Refreshing Work?

      • Building a Better Autocomplete

    • Summary

  • Appendix A - Developing Cross-Browser JavaScript

    • Appending Rows to a Table

    • Setting an Element’s Style via JavaScript

    • Setting an Element’s class Attribute

    • Creating Input Elements

    • Adding Event Handlers to Input Elements

    • Creating Radio Buttons

    • Summary

  • Appendix B - Introducing Ajax Frameworks

    • Browser-Side Frameworks

      • Dojo

      • Rico

      • qooxdoo

      • TIBET

      • Flash/JavaScript Integration Kit

      • Google AJAXSLT

      • libXmlRequest

      • RSLite

      • SACK

      • sarrisa

      • XHConn

    • Server-Side Frameworks

      • CPAINT

      • Sajax

      • JSON/JSON-RPC

      • Direct Web Remoting

      • SWATO

      • Java BluePrints

      • Ajax.Net

      • Microsoft’s Project Atlas

      • Ruby on Rails

  • Index

Tài liệu cùng người dùng

  • Đang cập nhật ...

Tài liệu liên quan