Đang chuẩn bị nút TẢI XUỐNG, xin hãy chờ
Tải xuống
Dưới đây là giải pháp cho các bài tập tôi đã cho ở cuối mỗi chương. Các kịch bản và hình ảnh được sử dụng trong các giải pháp có thể được tìm thấy trên trang web đồng hành của cuốn sách này (http://www. Bookofjavascript.com). JavaScript trong phụ lục này chứa những bình luận mà tôi nghĩ rằng giải thích là cần thiết. Nếu giải pháp của bạn làm việc và không nhiều thời gian hơn hơn so với tôi, bạn đã thực hiện một công việc tốt. Không có phân công cho Chương 1, vì vậy chúng tôi sẽ. | Example if isNaN Math.sqrt -1 alert Get real You can t take the square root of -1 NEGATIVE_INFINITY FF IE 4 Read-only Value smaller than Number.MIN_VALUE. You know no number will ever be less than this value. POSITIVE_INFINITY FF IE 4 Read-only Value bigger than Number.MAX_VALUE. No number will ever exceed this value. Methods toExponential FF IE 5.5 Displays the number in exponential notation. An integer parameter specifies the number of digits to the right of the decimal point. Example var the answer 4321 alert the_answer.exponential 2 The alert contains the string 4.32e 3. toFixed FF IE 5.5 Sets the number of digits following a decimal point. The number is rounded up if it has more trailing digits than n and 0 s are used after the decimal point if needed to create the desired decimal length. toPrecision FF IE 5.5 Formats any number so it is of length n where n is an integer passed as a parameter. Also called significant digits. A decimal point and 0 s are used if needed to create the desired length. toString FF IE 3 Turns a number into a string Option The option object refers to an option in a select element of a form either a pull-down menu or scrollable list. All the options of a select element are stored in the options array of that element. Properties Form FF IE 3 Form containing the option selected FF IE 3 true if the option has been selected and false otherwise Example if window.document.the form.the pulldown.options 0 .selected true var the_option_text window.document.the_form.the_pulldown.option 0 .text alert thanks for picking the_option_teXt Reference to JavaScript Objects and Functions 435 text FF IE 3 Text associated with an option see the preceding example value FF IE 3 Value of the option parseInt FF IE 3 Converts a string to an integer as long as the first character is a number. If the first character is not a number parseInt returns NaN not a number . If the string is a number followed by letters parseInt grabs the first set of digits in the .