楼主: ReneeBK
983 1

Practical jQuery [推广有奖]

  • 1关注
  • 62粉丝

VIP

学术权威

14%

还不是VIP/贵宾

-

TA的文库  其他...

R资源总汇

Panel Data Analysis

Experimental Design

威望
1
论坛币
49407 个
通用积分
51.8704
学术水平
370 点
热心指数
273 点
信用等级
335 点
经验
57815 点
帖子
4006
精华
21
在线时间
582 小时
注册时间
2005-5-8
最后登录
2023-11-26

+2 论坛币
k人 参与回答

经管之家送您一份

应届毕业生专属福利!

求职就业群
赵安豆老师微信:zhaoandou666

经管之家联合CDA

送您一个全额奖学金名额~ !

感谢您参与论坛问题回答

经管之家送您两个论坛币!

+2 论坛币

  1. Book Description
  2. Practical jQuery is your step-by-step guide to using jQuery in the real world, taking you from downloading jQuery all the way to extending it by writing your own plug-ins and testing the DOM using QUnit. jQuery is one of today's most popular JavaScript web application development frameworks and libraries. While getting started with the tool is easy, sometimes it's not as simple to completely realize the power and automation that it can bring to your development work—and that's especially the case when you're in the middle of a project, up against a deadline.

  3. Using this book, you will learn how to use jQuery's powerful DOM manipulation tools to dynamically update content on your site. You will be able to extend jQuery's capabilities by writing your own plugins on top of the framework, animate elements, build your own jQuery elements, employ best practices, and avoid common errors. Practical jQuery teaches you how, with jQuery, you can unit test and refactor your code. You'll see how expressive yet concise jQuery's code is and how much quicker and efficient it is to develop with jQuery.

  4. Get a fundamental perspective on how jQuery works, how to understand, select, and build your own plug-ins, and how to make sure your projects run at the peak of their potential performance using Practical jQuery today.
  5. Book Details
  6. Publisher:        Apress
  7. By:        Mukund Chaudhary, Ankur Kumar
  8. ISBN:        978-1-484207-88-8
  9. Year:        2015
  10. Pages:        320
  11. Language:        English
  12. File size:        6.8 MB
  13. File format:        PDF
复制代码




二维码

扫码加我 拉你入群

请注明:姓名-公司-职位

以便审核进群资格,未注明则拒绝

关键词:Practical practic Jquery Query ACT completely sometimes testing getting popular

本帖被以下文库推荐

沙发
ReneeBK 发表于 2015-10-18 04:42:34 |只看作者 |坛友微信交流群
  1. jQuery Syntax

  2. We previously stated that jQuery is a DOM manipulation library. So, keeping the current topic in sync with the heading, we will begin by demonstrating and explaining the most basic and common uses of jQuery. In the most basic of the scenarios, you would perform an action in jQuery, such as

  3. $(selector).action();
  4. Here starts the real lubrication of the jQuery machinery. Let us move toward analysis of the most basic usage that we just mentioned. We have outlined the syntax in list form, as follows:

  5. The $ (dollar) sign is used to define and access jQuery. If we speak the language of commonly used OOP languages such as PHP, Java, or C++, we would say that the $ symbol is simply a variable in jQuery that represents the jQuery function as such. Another, simpler expression of this statement would be to state that the $ symbol is an alias of jQuery. To state the explanation even more clearly, using $(selector).action(); would have the same effect as using jQuery(selector).action();.
  6. (selector) is used to query (or find) an HTML element. It can be any HTML element—a <p> or <h1> tag or even a <script> tag, and so on. Selectors are quite important to learn and master. If you have a working knowledge of how to use selectors, you will be able to drive through with great ease most of the web development problems you encounter. For the record, we explain selectors in detail in the next chapter.
  7. action() is the jQuery action that must be performed on an element. By action, we mean an action to be performed, let’s say on a click event or a mouseout event. We will take up events in the coming chapters, so you can postpone worrying about not knowing about that concept for now.
复制代码

使用道具

您需要登录后才可以回帖 登录 | 我要注册

本版微信群
加好友,备注jltj
拉您入交流群

京ICP备16021002-2号 京B2-20170662号 京公网安备 11010802022788号 论坛法律顾问:王进律师 知识产权保护声明   免责及隐私声明

GMT+8, 2024-4-28 21:35