学习JavaScript(第二版,影印版)
学习JavaScript(第二版,影印版)
Shelley Powers
出版时间:2009年07月
页数:375
如果你想使用JavaScript来利用当今强大的浏览器,《学习JavaScript》为这个Web开发中奇妙且不可缺少的语言提供了完整而实际的指导。你将会学习从原始数据类型到复杂特性的所有内容,包括与Ajax和动态页面效果有关的JavaScript元素。学完这本书,你将能够使用最复杂的程序库和Web应用程序。
第二版中包括了许多JavaScript运用中的最佳实践和范例,展示了如何将语言和浏览器环境整合,以及如何为符合标准的Web站点实践准确的编码技术。展开全部内容介绍
  1. Preface
  2. 1. Hello JavaScript!
  3. Hello World!
  4. Hello World! Once Again
  5. The script Tag
  6. JavaScript Versus ECMAScript Versus JScript
  7. Defining Functions in JavaScript
  8. Event Handlers
  9. The document Browser Object
  10. The property Operator
  11. The var Keyword and Scope
  12. Statements
  13. Comments
  14. What You Didn’t See: HTML Comments and CDATA Sections
  15. JavaScript Files
  16. Accessibility and JavaScript Best Practices
  17. Accessibility Guidelines
  18. noscript
  19. 2. JavaScript Data Types and Variables
  20. Identifying Variables
  21. Naming Guidelines
  22. Primitive Types
  23. The String Data Type
  24. String Escape Sequences
  25. String Encoding
  26. Converting to Strings
  27. The Boolean Data Type
  28. The Number Data Type
  29. The null and undefined Variables
  30. Constants: Named but Not Variables
  31. Test Your Knowledge: Quiz
  32. Test Your Knowledge: Answers
  33. 3. Operators and Statements
  34. The Format of a JavaScript Statement
  35. The Assignment Statement
  36. The Arithmetic Operators
  37. The Unary Operators
  38. Operator Precedence
  39. A Handy Shortcut: Assignment with Operation
  40. The Bitwise Operators
  41. Conditional Statements and Program Flow
  42. The if…else Conditional Statement
  43. The switch Conditional Statement
  44. The Conditional Operators
  45. The Equality and Identity (String Equality) Operators
  46. Other Relational Operators
  47. The One and Only JavaScript Ternary Operator
  48. The Logical Operators
  49. Advanced Statements: The Loops
  50. The while Loop
  51. The do…while Loop
  52. The for Loops
  53. Test Your Knowledge: Quiz
  54. Test Your Knowledge: Answers
  55. 4. The JavaScript Objects
  56. Primitive Data Types As Objects
  57. Boolean, Number, and String
  58. The Boolean Object
  59. The Number Object, Static Properties, and Instance Methods
  60. The String Object
  61. Regular Expressions and RegExp
  62. The RegExp Methods: test and exec
  63. Working with Regular Expressions
  64. The Date Object
  65. The Math Object
  66. The Math Properties
  67. The Math Methods
  68. JavaScript Arrays
  69. FIFO Queues
  70. Test Your Knowledge: Quiz
  71. Test Your Knowledge: Answers
  72. 5. Functions
  73. Declarative Functions
  74. Function Naming Conventions and Size
  75. Function Returns and Arguments
  76. Anonymous Functions
  77. Function Literals
  78. Functions and Recursion
  79. Nested Functions, Function Closure, and Memory Leaks
  80. Callback Functions
  81. Function Type Summary
  82. Function Scope
  83. Function As Object
  84. Test Your Knowledge: Quiz
  85. Test Your Knowledge: Answers
  86. 6. Troubleshooting, Debugging, and Cross-Browser Issues
  87. Simple Ways to Debug
  88. Development and Debugging Tools by Browser
  89. Firefox and Firebug
  90. Using console.log
  91. Firefox, the Web Developer Toolkit, and NoScript
  92. Opera and Dragonfly
  93. Safari/WebKit and the Web Inspector
  94. Internet Explorer
  95. Dealing with Cross-Browser Differences
  96. Object Detection
  97. Where Object Detection Fails
  98. DOCTYPE, X-UA-Compatible, and Quirks Mode
  99. Breaking Backward Compatibility: The IE8 http-equiv Meta Tag
  100. Test Your Knowledge: Quiz
  101. Test Your Knowledge: Answers
  102. 7. Catching Events
  103. The Events
  104. Level 0 Event Handling
  105. The Event Object
  106. Event Bubbling
  107. Event Handlers and this
  108. The DOM Level 2 Event Model
  109. Generating Events
  110. Test Your Knowledge: Quiz
  111. Test Your Knowledge: Answers
  112. 8. Forms, Form Events, and Validation
  113. Attaching Events to Forms: Different Approaches
  114. Cross-Browser Event Handling
  115. Canceling an Event
  116. Selection
  117. Dynamically Modifying the Selection
  118. Selection and Auto-Selection
  119. Radio Buttons and Checkboxes
  120. The text, textarea, password, and hidden Input Elements
  121. Text Validation
  122. Input Fields and Regular Expression Validation
  123. Forms, the Sandbox, and XSS
  124. Test Your Knowledge: Quiz
  125. Test Your Knowledge: Answers
  126. 9. Browser As Puzzle Box
  127. The Structure of the Browser at a Glance
  128. The window Object
  129. Creating and Controlling Windows
  130. The Dialogs: alert, confirm, and prompt
  131. Creating Custom Windows
  132. Modifying a Window
  133. Frames
  134. The location Object
  135. Remote Scripting with the iframe
  136. Adding and Controlling Timers
  137. The history, screen, and navigator Objects
  138. The history Object
  139. The screen Object
  140. The navigator Object
  141. The history, screen, and navigator Properties in Action
  142. The Document Object
  143. Links
  144. Images
  145. innerHTML
  146. Test Your Knowledge: Quiz
  147. Test Your Knowledge: Answers
  148. 10. Cookies and Other Client-Side Storage Techniques
  149. The JavaScript Sandbox and Cookie Security
  150. The Same-Origin Security Policy
  151. Using document.domain
  152. All About Cookies
  153. Storing and Reading Cookies
  154. Flash Shared Objects, Google Gears, and HTML5 DOM Storage
  155. Test Your Knowledge: Quiz
  156. Test Your Knowledge: Answers
  157. 11. The DOM, or Web Page As Tree
  158. A Tale of Two Interfaces
  159. The DOM HTML API
  160. The DOM HTML Objects and Their Properties
  161. DOM (HTML) Collections
  162. Understanding the DOM: The Core API
  163. The DOM Tree
  164. Node Properties and Methods
  165. The DOM Core Document Object
  166. Element and Access in Context
  167. Modifying the Tree
  168. Test Your Knowledge: Quiz
  169. Test Your Knowledge: Answers
  170. 12. Dynamic Pages
  171. JavaScript, CSS, and the DOM
  172. The Style Property/Attributes
  173. Fonts and Text
  174. Font Style Properties
  175. Text Properties
  176. Position and Movement
  177. Dynamic Positioning
  178. Drag-and-Drop
  179. Size and Clipping
  180. Overflow and Dynamic Content
  181. The Clipping Rectangle
  182. Display, Visibility, and Opacity
  183. The Right Tool for the Right Effect
  184. Just-in-Time Information
  185. Revisiting the DOM: Collapsing Forms, Query Selectors, and Class Names
  186. Test Your Knowledge: Quiz
  187. Test Your Knowledge: Answers
  188. 13. Creating Custom JavaScript Objects
  189. The JavaScript Object and Prototyping
  190. Prototyping
  191. Creating Your Own Custom JavaScript Objects
  192. Enter the Function
  193. Public and Private Properties and Where this Enters the Picture
  194. Getters and Setters
  195. Object Encapsulation
  196. Chaining Constructors and JavaScript Inheritance
  197. One-Off Objects
  198. Object Libraries: Packaging Your Objects for Reuse
  199. Advanced Error Handling Techniques (try, throw, catch)
  200. Test Your Knowledge: Quiz
  201. Test Your Knowledge: Answers
  202. 14. Moving Outside the Page with Ajax
  203. How Ajax Works
  204. Hello Ajax World!
  205. The XMLHttpRequest Object and Preparing to Send the Request
  206. Object, Object, Who Has the Object?
  207. The XMLHttpRequest Methods
  208. Processing the Web Request Return
  209. Checking the readyState and status of an Ajax Request
  210. Processing the Web Request Result
  211. Ajax: It’s Not Only Code
  212. The Dynamic Nature of Ajax
  213. Ajax Accessibility and Degrading Gracefully
  214. Security and Workarounds
  215. JavaScript and Ajax Libraries
  216. Test Your Knowledge: Quiz
  217. Test Your Knowledge: Answers
  218. 15. Ajax Data: XML or JSON?
  219. XML-Formatted Ajax Results
  220. The Data’s MIME Type
  221. Generating the XML on the Server
  222. Processing the XML on the Client
  223. JavaScript Object Notation
  224. A Simple JSON Application
  225. The JSON Object
  226. Test Your Knowledge: Quiz
  227. Test Your Knowledge: Answers
  228. Index
购买选项
定价:52.00元
书号:978-7-5641-1649-1
出版社:东南大学出版社