没有合适的资源?快使用搜索试试~ 我知道了~
首页Beginning jQuery(2nd) 无水印原版pdf
资源详情
资源评论
资源推荐

Beginning jQuery: From the Basics of jQuery to Writing your Own Plug-ins
Jack Franklin Russ Ferguson
London, Ocean, New Jersey,
United Kingdom USA
ISBN-13 (pbk): 978-1-4842-3026-8 ISBN-13 (electronic): 978-1-4842-3027-5
https://doi.org/10.1007/978-1-4842-3027-5
Library of Congress Control Number: 2017960290
Copyright © 2017 by Jack Franklin, Russ Ferguson
This work is subject to copyright. All rights are reserved by the Publisher, whether the whole or part of the
material is concerned, specifically the rights of translation, reprinting, reuse of illustrations, recitation,
broadcasting, reproduction on microfilms or in any other physical way, and transmission or information storage
and retrieval, electronic adaptation, computer software, or by similar or dissimilar methodology now known or
hereafter developed.
Trademarked names, logos, and images may appear in this book. Rather than use a trademark symbol with
every occurrence of a trademarked name, logo, or image we use the names, logos, and images only in an
editorial fashion and to the benefit of the trademark owner, with no intention of infringement of the trademark.
The use in this publication of trade names, trademarks, service marks, and similar terms, even if they are
not identified as such, is not to be taken as an expression of opinion as to whether or not they are subject to
proprietary rights.
While the advice and information in this book are believed to be true and accurate at the date of publication,
neither the authors nor the editors nor the publisher can accept any legal responsibility for any errors or
omissions that may be made. The publisher makes no warranty, express or implied, with respect to the
material contained herein.
Cover image designed by Freepik.
Managing Director: Welmoed Spahr
Editorial Director: Todd Green
Acquisitions Editor: Louise Corrigan
Development Editor: James Markham
Technical Reviewer: Massimo Nardone
Coordinating Editor: Nancy Chen
Copy Editor: Bill McManus
Compositor: SPi Global
Indexer: SPi Global
Artist: SPi Global
Distributed to the book trade worldwide by Springer Science+Business Media New York,
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 www.springeronline.com. Apress Media, LLC is a California LLC
and the sole member (owner) is Springer Science + Business Media Finance Inc (SSBM Finance Inc).
SSBM Finance Inc is a Delaware corporation.
For information on translations, please e-mail rights@apress.com, or visit http://www.apress.com/
rights-permissions.
Apress titles may be purchased in bulk for academic, corporate, or promotional use. eBook versions and
licenses are also available for most titles. For more information, reference our Print and eBook Bulk Sales
web page at http://www.apress.com/bulk-sales.
Any source code or other supplementary material referenced by the authors in this book is available to
readers on GitHub via the book’s product page, located at www.apress.com/9781484230268. For more detailed
information, please visit http://www.apress.com/source-code.
Printed on acid-free paper

iii
Contents
About the Authors ���������������������������������������������������������������������������������������������������� ix
About the Technical Reviewer ��������������������������������������������������������������������������������� xi
■Chapter 1: JavaScript You Need to Know �������������������������������������������������������������� 1
Using JavaScript on a Web Page �������������������������������������������������������������������������������������� 2
Syntax Conventions ���������������������������������������������������������������������������������������������������������� 2
Semicolons ��������������������������������������������������������������������������������������������������������������������������������������������� 3
White Space �������������������������������������������������������������������������������������������������������������������������������������������� 3
Comments ���������������������������������������������������������������������������������������������������������������������������������������������� 3
Variables ��������������������������������������������������������������������������������������������������������������������������� 3
Creating Variables �����������������������������������������������������������������������������������������������������������������������������������4
Types ������������������������������������������������������������������������������������������������������������������������������������������������������ 4
Functions �������������������������������������������������������������������������������������������������������������������������� 5
Creating Functions ����������������������������������������������������������������������������������������������������������������������������������5
Functions Returning Values �������������������������������������������������������������������������������������������������������������������� 7
Conditionals ���������������������������������������������������������������������������������������������������������������������� 7
Debugging with the Console �������������������������������������������������������������������������������������������� 9
Arrays ����������������������������������������������������������������������������������������������������������������������������� 10
Loops ������������������������������������������������������������������������������������������������������������������������������ 12
More console�log() ���������������������������������������������������������������������������������������������������������� 14
Summary ������������������������������������������������������������������������������������������������������������������������ 15

■ Contents
iv
■Chapter 2: The Basics of jQuery �������������������������������������������������������������������������� 17
The Document Object Model (DOM) ������������������������������������������������������������������������������� 18
Downloading jQuery ������������������������������������������������������������������������������������������������������� 19
The jQuery API Documentation ��������������������������������������������������������������������������������������� 20
Writing Some jQuery ������������������������������������������������������������������������������������������������������ 21
Animation Example ������������������������������������������������������������������������������������������������������������������������������� 25
Summary ������������������������������������������������������������������������������������������������������������������������ 30
■Chapter 3: Traversing the DOM ���������������������������������������������������������������������������� 33
CSS Selectors in jQuery�������������������������������������������������������������������������������������������������� 33
Traversal Methods ���������������������������������������������������������������������������������������������������������� 35
Further Traversal ������������������������������������������������������������������������������������������������������������ 37
Chaining Methods ���������������������������������������������������������������������������������������������������������� 39
Further Filtering ������������������������������������������������������������������������������������������������������������� 44
Summary ������������������������������������������������������������������������������������������������������������������������ 46
■Chapter 4: DOM Manipulation with jQuery ���������������������������������������������������������� 47
CSS ��������������������������������������������������������������������������������������������������������������������������������� 47
animate() and Animation Convenience Methods ������������������������������������������������������������ 49
Attributes and Properties ����������������������������������������������������������������������������������������������� 51
text() and html() �������������������������������������������������������������������������������������������������������������� 52
Removing Elements from the DOM �������������������������������������������������������������������������������� 53
Creating New Elements �������������������������������������������������������������������������������������������������� 55
Inserting into the DOM ��������������������������������������������������������������������������������������������������� 55
DOM Insertion, Around �������������������������������������������������������������������������������������������������������������������������� 56
DOM Insertion, Inside���������������������������������������������������������������������������������������������������������������������������� 57
DOM Insertion, Outside ������������������������������������������������������������������������������������������������������������������������� 59
Efficient DOM Insertion��������������������������������������������������������������������������������������������������� 60
Summary ������������������������������������������������������������������������������������������������������������������������ 61
剩余179页未读,继续阅读


















安全验证
文档复制为VIP权益,开通VIP直接复制

评论0