AJAX與JavaScript指令碼語言

來源:互聯網
上載者:User

而JavaScript也起到了不小的作用,下面我將介紹JavaScript的進階知識部分


 

使用.操作符



var count= 0; varaddCount = function(){ count++; }; }; functionooTest(){ //根據類名反射產生對象,只知道Book,只要要傳的參數"wang" var book =reflect("Book",["wang"]); alert(book.getName()); //判斷一個對象是否擁有某個屬性 //hasOwnProperty這個方法只能判斷在對象上直接定義的屬性,對於繼承來的屬性不能直接判斷 var bool =book.hasOwnProperty("name"); alert(bool); //需要有一個替代方法,讓getName這種繼承的屬性也能被判斷 var bool2 =book.hasProperty("getName"); alert(bool2); //遍曆book對象上的所有屬性 for(varproName in book){ alert(book[proName]); } //如果我們需要獲得一個對象上,所有屬性值不是function的屬性 varproArray = []; for(varproName in book){ vartemp = book[proName]; if(typeof temp !== "function"){ proArray.push(proName); } } alert(proArray);

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.