js面向對象

在JS中每個function就是一個對象,好比以下一個函數:函數 function HelloWorld() {     alert('hello world!'); }測試 那麼咱們在使用的時候就能夠把它當成一個對象來使用,好比使用以下的測試函數:this function _test() {     var obj = new HelloWorld(); }prototype 能夠這樣添加:對
相關文章
相關標籤/搜索