{{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

JavaScript从入门到精通(第3版)

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

JavaScript从入门到精通(第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
Editer Recommend

循序渐进,通过编程练习逐步掌握和精通JavaScript《JavaScript从入门到精通(第3版)》可帮助读者提升专业技能,掌握JavaScript基础知识。对略有编程经验但刚开始接触JavaScript的读者而言,《JavaScript从入门到精通(第3版)》实用性很强,通过经典的Step By Step写作风格和编程练习来指导读者掌握JavaScript核心主题和技术。
《JavaScript从入门到精通(第3版)》特色主题
·熟练掌握JavaScript的句法、变量和数据类型
·掌握构建跨浏览器应用程序的技术
·使用iQueryJ口速和简化应用开发
·使用AJAX查询向服务器端快速检索数据
·借助于iQuery Mobile将桌面应用调为移动应用
·使用HTML,CSS和JavaScript构建Windows 8应用
Content Description

《JavaScript从入门到精通(第3版)》旨在介绍JavaScript基础知识,沿用经典的Stepby Step风格,一次介绍一个知识点,并通过练习来加以巩固。这本实用教程提供了清楚的指导和动手实例,各章还提供练习题有利于读者使用JavaScript核心特性和技术创建或定制交互式app。
全书共4部分23章,主题涉及JavaScript基础知识,JavaScript的应用,JavaScript与设计的集成,AJAX和服务器端的集成,iQuery基础知识。《JavaScript从入门到精通(第3版)》特别针对初学者,在每一章设计了练习题和相应的答案,以帮助他们学以致用,迅速掌握JavaScript,提升编程技能。
Author Description

苏灵(Steve Suehring),技术架构师,爱好写作,涉及主题有编程、安全、网络与系统管理、操作系统等,尤其擅长于向初学者介绍基础知识。

梁春艳,曾经在多家移动通信公司做研发工作,对移动通信系统的开发和测试比较了解,擅长C语言编程和测试。译作涉及JavaScript编程、敏捷软件工程和并行编程等主题。
Catalogue

第1部分 Java啥?JavaScript的用处、优势和用法
第1章 JavaScript超乎你的想象
1.1 JavaScript简史
1.1.1 Internet Explorer 3.0
1.1.2 ECMAScript
1.1.3 标准多多
1.1.4 DOM
1.2 JavaScript程序的组成
1.3 把JavaScript放到网页上
1.4 JavaScript能够做什么
1.5 JavaScript不能做什么
1.5.1 JavaScript不能强加于客户端
1.5.2 JavaScript无法保证数据安全性
1.5.3 JavaScript不能跨域
1.5.4 JavaScript不能充当服务器
1.6 JavaScript使用提示
1.6.1 JavaScript适用于哪些场景
1.6.2 网站要支持哪些浏览器
1.6.3 Windows8登场
练习题
第2章 使用JavaScript开发
2.1 JavaScript开发选择
2.2 配置环境
2.3 使用Visual Studio 2010编写JavaScript
2.3.1 使用Visual Studio 2012的第一个web(和JavaScript)项目
2.3.2 在Visual Studio 2012中使用外部JavaScript文件
2.4 使用Eclipse编写JavaScript
2.4.1 使用Eclipse开发第一个web(和JavaScript)项目
2.4.2 在Eclipse内使用外部JavaScript文件
2.5 不使用IDE编写JavaScript
2.5.1 使用Notepad的第一个web(和JavaScript)项目
2.5.2 在没有IDE的情况下使用外部JavaScript文件
2.6 调试JavaScript
练习题
第3章 JavaScript的语法和语句
3.1 一些常识
3.1.1 区分大小写
3.1.2 空白
3.1.3 注释
3.1.4 分号
3.1.5 换行
3.1.6 正确放置JavaScript
3.2 JavaScript语句
3.2.1 语句中有什么
3.2.2 JavaScript语句的两种类型
3.3 JavaScript中的保留字
3.4 函数简介
3.5 JavaScript的严格模式
练习题
第4章 使用变量和数据类型
4.1 JavaScript中的数据类型
4.1.1 数字
4.1.2 字符串的用法
4.1.3 布尔值
4.1.4 未定义
4.1.5 对象
4.1.6 数组
4.2 定义和使用变量
4.2.1 声明变量
4.2.2 变量类型
4.2.3 变量作用域
4.2.4 Date对象
4.3 使用RegExp对象
4.3.1 正则表达式的语法
4.3.2 引用和垃圾回收机制
4.4 学习类型转换
4.4.1 数字转换
4.4.2 字符串转换
4.4.3 布尔值转换
练习题
第5章 使用操作符和表达式
5.1 操作符
5.2 加法操作符
5.3 乘法操作符
5.4 位操作符
5.5 相等操作符
5.6 关系操作符
5.6.1 in操作符
5.6.2 instanceof操作符
5.7 -元操作符
5.7.1 自增和自减
5.7.2 使用加号转换成数字
5.7.3 使用减号创建负数
5.7.4 按位求反和逻辑非
5.7.5 使用delete操作符
5.7.6 使用typeof操作符返回变量类型
5.8 赋值操作符字节节省(又名缩小)的重要性
5.9 逗号操作符
练习题
第6章 条件和循环控制流
6.1 if语句的用法
6.1.1 if语句的语法
6.1.2 Internet Explorer中的prompt( )函数
6.1.3 复合条件
6.2 使用else if语句和else语句
6.3 三元条件语句
6.4 使用switch测试
6.5 while循环
6.5.1 while语句
6.5.2 do...while语句
6.6 使用for循环
6.6.1 for循环
6.6.2 for...in循环
6.6.3 for each...in循环
6.7 使用条件语句验证表单
练习题
第7章 使用函数
7.1 函数的组成
7.1.1 函数参数
7.1.2 再探变量作用域
7.1.3 返回值
7.1.4 函数调用的更多内容
7.1.5 匿名/无名函数(函数直接量)
7.1.6 闭包
7.2 方法
7.3 对话框函数概览
练习题
第8章 JavaScript中的对象
8.1 面向对象开发
8.1.1 对象
8.1.2 属性
8.1.3 方法
8.1.4 类
8.2 创建对象
8.2.1 力对象添加属性
8.2.2 为对象添加方法
8.3 数组详解
8.3.1 length属性
……
第2部分 将JavaScript集成到设计
第3部分 AJAX和服务器端集成
第4部分 JavaScript和Windows 8

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