網站系統開發規劃 index
- <script type="text/javascript">
- //可別打錯字囉 ,如果打成 text/javascirpt 可會沒有反應的。
- alert("hello");
- </script>
- <函式名稱>(參數一,參數二,參數三)
- //alert(param1,param2,param3)
- function <自定義函式名稱>(參數名稱1,參數名稱2,參數名稱3 /*...視需要定義 */ ){
- /*預執行程式碼 */
- }
- if(1 == 1){
- alert("1 等於 1 ");
- }else{
- alert("1 不等於 1 ");
- }
- for(var i =0 ; i < 10 ;++i){
- alert("列印從 0 到 9 的數字,目前數字是"+i);
- }
@ document.getElementById
@ 事件
- <img src="http://placehold.it/94x95&text=img1" />
- <img id="img2" src="http://placehold.it/94x95&text=img2" />
- <script type="text/javascript">
- //透過 document 物件與 id 取得網頁元素
- var img = document.getElementById("img2");
- img.onclick = function(){
- var theimg = document.getElementById("img2");
- theimg.src="http://placehold.it/94x95&text=Clicked";
- }
- </script>
@ window.setInterval: 根據指定的時間間隔,定期執行傳入的函式內容
@ new Date(): 專門用來處理日期相關的問題的,當我們透過 new 建立一個 Date 物件時,預設會取得當前的時間。
@ div.innnerHTML
@ 什麼是 dom
這是 Document Object Model 的縮寫,事實上就是指 document 中元素,
對應到的 JavaScript 物件,我們就統稱為 dom。
對應到的 JavaScript 物件,我們就統稱為 dom。
@ 什麼是 jQuery
沒有留言 :
張貼留言