Javascript [Electronic resources] : The Definitive Guide (4th Edition) نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Javascript [Electronic resources] : The Definitive Guide (4th Edition) - نسخه متنی

David Flanagan

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید



Chapter 12. JavaScript in Web Browsers


The
first part of this book described the core JavaScript language. Now
we move on to JavaScript as used within web browsers, commonly called
client-side JavaScript.[1] Most of the examples
we've seen so far, while legal JavaScript code, had no
particular context; they were JavaScript fragments that ran in no
specified environment. This chapter provides that context. It begins
with a conceptual introduction to the web browser programming
environment and basic client-side JavaScript concepts. Next, it
discusses how we actually embed JavaScript code within HTML documents
so it can run in a web browser. Finally, the chapter goes into detail
about how JavaScript programs are executed in a web browser.

[1] The term "client-side
JavaScript" is left over from the days when JavaScript was used
in only two places: web browsers (clients) and web servers. As
JavaScript is adopted as a scripting language in more and more
environments, the term client-side makes less and less sense because
it doesn't specify the client side of

what . Nevertheless, we'll continue to use
the term in this book.


/ 844