{{sellerTotalView > 1 ? __("sellers", {number: sellerTotalView}) : __("seller", {number: sellerTotalView}) }}, {{numTotalView > 1 ? __("items", {number: numTotalView}) : __("item", {number: numTotalView}) }}
free FREE

Change Your Zip Code

Inventory information and delivery speeds may vary for different locations.

Location History

{{email ? __('Got it!') : __('Restock Alert')}}

We will notify you by email when the item back in stock.

Cancel
Yami

Jingdong book

jQuery基础教程(第3版)

{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}

jQuery基础教程(第3版)

{{__(":people-members", {'people': item.limit_people_count})}} {{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ item.invalid_price }} {{ itemDiscount }}
Ends in
{{ itemCurrency }}{{ item.valid_price }}
{{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }}
{{ itemDiscount }}
{{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }} {{ itemCurrency }}{{ item.invalid_price }} {{itemDiscount}}
{{ itemCurrency }}{{ item.valid_price }}
Sale ends in
Sale will starts after Sale ends in
{{ getSeckillDesc(item.seckill_data) }}
{{ __( "Pay with Gift Card to get sale price: :itemCurrency:price", { 'itemCurrency' : itemCurrency, 'price' : (item.giftcard_price ? priceFormat(item.giftcard_price) : '0.00') } ) }} ({{ itemCurrency }}{{ priceFormat(item.giftcard_price / item.bundle_specification) }}/{{ item.unit }}) Details
Best before

Currently unavailable.

We don't know when or if this item will be back in stock.

Unavailable in your area.
Sold Out

Details

Full product details
Content Description

《jQuery基础教程(第3版)》作为《jQuery基础教程(第2版)》的升级版,涵盖了jQuery 1.6.x及1.7.x的全部新特性,本书前6章以通俗易懂的方式介绍了jQuery的核心组件,主要包括jQuery的选择符、事件、动画技术、DOM操作、AJAX支持等。第7章和第8章介绍了jQuery UI及利用jQuery强大的扩展能力开发自定义插件。随后的几章更加深入地探讨了jQuery的各种特性及一些高级技术。值得一提的是,本书的译者新增了附录D,介绍了2011年11月新发布的jQuery1.7的内容。
《jQuery基础教程(第3版)》注重理论与实践相结合,适合初、中级 Web开发人员阅读和参考。

Catalogue

第1章 jQuery入门
1.1 jQuery能做什么
1.2 jQuery为什么如此出色
1.3 第一个jQuery驱动的页面
1.3.1 下载jQuery
1.3.2 在HTML文档中引入jQuery
1.3.3 编写jQuery代码
1.3.4 最终结果
1.4 纯JavaScript与jQuery
1.5 开发工具
1.6 小结

第2章 选择元素
2.1 DOM
2.2 $()函数
2.3 CSS选择符
2.3.1 基于列表项的级别添加样式
2.3.2 属性选择符
2.3.3 为链接添加样式
2.4 自定义选择符
2.4.1 每隔一行为表格添加样式
2.4.2 基于表单的选择符
2.5 DOM遍历方法
2.5.1 为特定单元格添加样式
2.5.2 连缀
2.6 访问DOM元素
2.7 小结
2.8 练习

第3章 事件
3.1 在页面加载后执行任务
3.1.1 代码执行的时机选择
3.1.2 基于一个页面执行多个脚本
3.1.3 缩短代码的简写方式
3.1.4 向.ready()回调函数中传入参数
3.2 简单的事件
3.2.1 简单的样式转换器
3.2.2 启用其他按钮
3.2.3 事件处理程序的环境
3.2.4 进一步合并
3.2.5 简写的事件
3.3 复合事件
3.3.1 显示和隐藏高级特性
3.3.2 突出显示可单击的项
3.4 事件的旅程
3.5 通过事件对象改变事件的旅程
3.5.1 事件目标
3.5.2 停止事件传播
3.5.3 默认操作
3.5.4 事件委托
3.5.5 事件委托的方法
3.6 移除事件处理程序
3.6.1 事件的命名空间
3.6.2 重新绑定事件
3.7 模仿用户操作
3.8 小结
3.9 练习

第4章 样式与动画
4.1 修改内联CSS
4.2 基本的隐藏和显示
4.3 效果和速度
4.3.1 指定显示速度
4.3.2 淡入和淡出
4.3.3 滑上和滑下
4.3.4 复合效果
4.4 创建自定义动画
4.4.1 手工创建效果
4.4.2 一次给多个属性添加动画效果
4.5 并发与排队效果
4.5.1 处理一组元素
4.5.2 处理多组元素
4.5.3 简单概括
4.6 小结
4.7 练习

第5章 操作DOM
5.1 操作属性
5.1.1 非class属性
5.1.2 DOM元素属性
5.2 DOM树操作
5.2.1 重新认识$()函数
5.2.2 创建新元素
5.2.3 插入新元素
5.2.4 移动元素
5.2.5 包装元素
5.2.6 反向插入方法
5.3 复制元素
5.4 内容setter和getter方法
5.5 DOM操作方法的简单归纳
5.6 小结
5.7 练习

第6章 通过AJAX发送数据
6.1 基于请求加载数据
6.1.1 追加HTML
6.1.2 操作JavaScript对象
6.1.3 加载XML文档
6.2 选择数据格式
6.3 向服务器传递数据
6.3.1 执行GET请求
6.3.2 执行POST请求
6.3.3 序列化表单
6.4 为AJAX请求提供不同的内容
6.5 关注请求
6.6 错误处理
6.7 AJAX和事件
6.8 安全限制
6.9 其他工具
6.9.1 低级AJAX方法
6.9.2 修改默认选项
6.9.3 部分加载HTML页面
6.10 小结
6.11 练习

第7章 使用插件
7.1 查找插件和帮助
7.2 使用插件
7.2.1 下载并包含Cycle插件
7.2.2 简单的用法
7.2.3 为插件方法指定参数
7.2.4 参数默认值
7.2.5 其他形式的插件
7.3 jQuery UI插件库
7.3.1 效果
7.3.2 交互组件
7.3.3 部件
7.3.4 ThemeRoller
7.4 小结
7.5 练习

第8章 开发插件
8.1 $别名在插件中的应用
8.2 添加新的全局函数
8.3 添加jQuery对象方法
8.3.1 对象方法的上下文
8.3.2 隐式迭代
8.3.3 方法连缀
8.4 方法的参数
8.4.1 参数映射
8.4.2 默认参数值
8.4.3 回调函数
8.4.4 可定制的默认值
8.5 jQuery UI部件工厂
8.5.1 创建部件
8.5.2 销毁部件
8.5.3 启用和禁用部件
8.5.4 接受部件选项
8.5.5 添加子方法
8.5.6 触发部件事件
8.6 插件设计建议
8.7 小结
8.8 练习

第9章 高级选择符与遍历
9.1 深入选择与遍历
9.1.1 动态筛选表格内容
9.1.2 表格行条纹效果
9.1.3 组合筛选与条纹
9.1.4 更多选择符与遍历方法
9.2 定制与优化选择符
9.2.1 编写定制的选择符插件
9.2.2 选择符的性能问题
9.3 DOM遍历背后的秘密
9.3.1 jQuery对象属性
9.3.2 DOM元素栈
9.3.3 编写DOM遍历方法插件
9.3.4 DOM遍历的性能问题
9.4 小结
9.5 练习

第10章 高级事件处理
10.1 再谈事件
10.1.1 追加数据页面
10.1.2 悬停时显示数据
10.2 事件委托
10.2.1 使用jQuery的委托方法
10.2.2 选择委托方法
10.2.3 早委托
10.2.4 使用上下文参数
10.3 自定义事件
10.3.1 无穷滚动
10.3.2 自定义事件参数
10.4 节流事件
10.5 特殊事件
10.6 小结
10.7 练习

第11章 高级效果
11.1 再谈动画
11.2 观测及中断动画
11.2.1 确定动画状态
11.2.2 中止运行的动画
11.3 全局效果属性
11.3.1 全局禁用所有效果
11.3.2 微调动画的平滑度
11.3.3 定义效果的持续时间
11.4 多属性缓动
11.5 延迟对象
11.6 小结
11.7 练习

第12章 高级DOM操作
12.1 排序表格行
12.1.1 服务器端排序
12.1.2 AJAX排序
12.1.3 JavaScript排序
12.2 移动和插入元素
12.2.1 为已有的文本添加链接
12.2.2 简单的JavaScript数组排序
12.2.3 对DOM元素排序
12.3 在DOM元素中保存数据
12.3.1 执行额外的预先计算
12.3.2 存储非字符串数据
12.3.3 变换排序方向
12.4 使用HTML5自定义数据特性
12.5 使用JSON排序和构建行
12.5.1 修改JSON对象
12.5.2 按需要重新构建内容
12.6 高级特性操作
12.6.1 简捷地创建元素
12.6.2 DOM创建挂钩
12.7 小结
12.8 练习

第13章 高级AJAX
13.1 渐进增强与AJAX
13.2 AJAX错误处理
13.3 jqXHR对象
13.3.1 AJAX承诺
13.3.2 缓存响应
13.4 截流AJAX请求
13.5 扩展AJAX功能
13.5.1 数据类型转换器
13.5.2 AJAX预过滤器
13.5.3 替代传输方式
13.6 小结
13.7 练习

附录A JavaScript闭包
附录B 使用QUnit测试JavaScript
附录C 快速参考
附录D jQuery 1.7简介

Specifications

Brand Jingdong book
Brand Origin China

Disclaimer

Product packaging, specifications and price are subject to change without notice. All information about the products on our website is provided for information purposes only. Please always read labels, warnings and directions provided with the product before use.

View Full Terms of Use
Add to favorites
{{ $isZh ? coupon.coupon_name_sub : coupon.coupon_ename_sub | formatCurrency }}
{{__("Buy Directly")}} {{ itemCurrency }}{{ item.directly_price }}
Quantity
{{ quantity }}
{{ instockMsg }}
{{ limitText }}
{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}
Sold by JD@CHINA
Ship to
{{ __("Ship to United States only") }}
Free shipping over 69
Genuine guarantee

Added to Cart

Keep Shopping

More to Consider

{{ item.brand_name }}

{{ item.item_name }}

{{ item.currency }}{{ item.market_price }}

{{ item.currency }}{{ item.unit_price }}

{{ item.currency }}{{ item.unit_price }}

Coupons

{{ coupon.coupon_name_new | formatCurrency }}
Clip Clipped Over
{{ getCouponDescStr(coupon) }}
{{ coupon.use_time_desc }}
Expires soon {{ formatTime(coupon.use_end_time) }}

Share this item with friends

Cancel

Yami Gift Card

Get this exclusive deal when paying with gift card

Terms and Conditions

Gift card deals are special offers for selected products;

The gift card deals will automatically be activated if a customer uses gift card balance at check out and the balance is sufficient to pay for the total price of the shopping cart products with gift card deals;

You will not be able to activate the gift card deals if you choose other payment methods besides gift card. The products will be purchased at their normal prices;

If your account balance is not enough to pay for the products with gift card deals, you can choose to reload your gift card balance by clicking on the Reload button at either shopping cart page or check out page;

Products that have gift card deals can be recognized by a special symbol showing 'GC Deal';

For any additional questions or concerns, please contact our customer service;

Yamibuy reserves the right of final interpretation.

Sold by Yami

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

Yami is committed to provide our customers with a peace of mind when purchasing from us. Most items shipped from Yamibuy.com can be returned within 30 days of receipt of shipment (For Food, Beverages, Snacks, Dry Goods, Health supplements, Fresh Grocery and Perishables Goods, within 7 days of receipt of shipment due to damages or quality issues; To ensure that every customer receives safe and high-quality products, we do not provide refunds or returns for beauty products once they have been opened or used, except in the case of quality issues; Some products may have different policies or requirements associated with them, please see below for products under special categories, or contact Yami Customer Service for further assistance).
Thank you for your understanding and support.

Learn More

Sold by Yami

Terms and Conditions of Yami E-Gift Card

If you choose “Redeem automatically” as your delivery method, your gift card balance will be reload automatically after your order has been processed successfully;

If you choose “Send to Email”as your delivery method, the card number and CVV will be sent to the email address automatically;

Any user can use the card number and CVV to redeem the gift card, please keep your gift card information safely. If you have any trouble receiving email, please contact Yami customer service;

Yami gift card can be used to purchase both Yami owned or Marketplace products;

Yami gift card will never expire;

Yami gift card balance does not have to be used up at once;

All rights reserved by Yami.

Return Policy

Gift card that has already been consumed is non-refundable.

Sold by JD@CHINA

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Sold by JD@CHINA

Service Guarantee

Yami Cross-store Free Shipping over $69
Yami 30-days Return

Yami-China FC

Yami has a consolidation warehouse in China which collects multiple sellers’ packages and combines to one order. Our Yami consolidation warehouse will directly ship the packages to your door. Cross-store free shipping over $69.

Return Policy

You may return products within 30 days upon receiving the products. Sellers take responsibilities for any wrong shipment or missing items. Packing needs to be unopened for any other than quality issues return. We promise to pack carefully, but because goods are taking long journey to destinations, simple damages to packaging may occur. Any damages not causing internal goods quality problems are not allowed to return. If you open the package and any quality problem is found, please contact customer service within three days after receipt of goods.

Shipping Information

Yami Consolidation Service Shipping Fee $9.99(Free shipping over $69)

Sellers in China will ship their orders within 1-2 business days once the order is placed. Packages are sent to our consolidation warehouse in China and combined there. Our Yami consolidation warehouse will directly ship the packages to you via UPS. The average time for UPS to ship from China to the United States is about 10 working days and it can be traced using the tracking number. Due to the pandemic, the delivery time may be delayed by about 5 days. The package needs to be signed by the guest. If the receipt is not signed, the customer shall bear the risk of loss of the package.

Sold by JD@CHINA

Service Guarantee

Free shipping over 69
Genuine guarantee

Shipping

Yami Consolidated Shipping $9.99(Free shipping over $69)


Seller will ship the orders within 1-2 business days. The logistics time limit is expected to be 7-15 working days. In case of customs clearance, the delivery time will be extended by 3-7 days. The final receipt date is subject to the information of the postal company.

Yami Points information

All items are excluding from any promotion or points events on Yamibuy.com

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Yami

Download the Yami App

Back Top

Recommended for You

About the brand

Jingdong book

为您推荐

Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折

Reviews{{'('+ commentList.posts_count + ')'}}

Have your say. Be the first to help other guests.

Write a review
{{ totalRating }} Write a review
  • {{i}} star

    {{i}} stars

    {{ parseInt(commentRatingList[i]) }}%

Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}
Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}

No related comment~

Review

Yami Yami

{{ showTranslate(commentDetails) }}Show Less

{{ strLimit(commentDetails,800) }}Show more

Show Original

{{ commentDetails.content }}

Yami
Show All

{{ formatTime(commentDetails.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ commentDetails.likes_count }} {{ commentDetails.likes_count }} {{ commentDetails.reply_count }} {{commentDetails.in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Comments{{'(' + replyList.length + ')'}}

Yami Yami

{{ showTranslate(reply) }}Show Less

{{ strLimit(reply,800) }}Show more

Show Original

{{ reply.reply_content }}

{{ formatTime(reply.reply_in_dtm) }}

{{ reply.reply_likes_count }} {{ reply.reply_likes_count }} {{ reply.reply_reply_count }} {{reply.reply_in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Cancel

That’s all the comments so far!

Write a review
How would you rate this item?

Please add your comment.

  • A nice nickname will make your comments more popular!
  • The nickname in your account will be changed to the same as here.
Thanks for your review
Our community rely on great reviews like yours to find the best of Asia.

Report

If you find this content inappropriate and think it should be removed from the Yami.com site, let us know please.

Cancel

Are you sure to delete your review?

Cancel

You’ve Recently Viewed

About the brand

Jingdong book