2.2、js基礎---預解析和strict 模式

來源:互聯網
上載者:User

標籤:不能   相容   bsp   執行   str   undefined   function   val   efi   

一、語言特性        1、預解析:js會把變數的聲明(僅僅是聲明)提到頂部,但是不會突破範圍。                alert(a);var a= 12; //結果,undefined        2、頁面無論多長都會進行預解析。        3、js語言執行步驟:                讀取一個script標籤=>預解析=>執行裡面代碼=>讀取下一個script=>預解析=>執行代碼        4、函數也有預解析,但是要注意:當以變數的形式聲明的函數,預解析會按照變數的特性走,否則不按照。                    a();//報錯了。                   var a=function(){                    alert(1);                    }二、 strict 模式:     代碼前邊加‘use strict’【好處】,有範圍,進階瀏覽器安全色,ie9-不相容。                好處:   1. 解決了局部函數中this是 window的bug;
                           2. 解決了不加val 聲明變數的bug                           3.避免在if switch,for while for in 裡面定義函數。                           4.with(元素.style){//strict 模式下刪除了with.                                                           }               strict 模式是有範圍的,                        1、函數    在函數裡面寫就是只限於函數。                        2、script標籤                使用strict 模式,‘use strict‘前邊不能有代碼

2.2、js基礎---預解析和strict 模式

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.