複習上節內容
定時器:setinterval("fun()",1000);
setinterval(function(),2000)
function fun()
100時鐘旋轉度數的確定
時針度數如何確定?每一小時轉30度
每分鐘轉6度
xhtml
11:30:40 11.5
*關閉定時器clearinterval(定時器)
*按鈕不可用用disabled屬性
*單標籤的值一般用value獲取 如input
innerhtml 獲取button的值
*this指的是事件源或者函式呼叫者
定時器之settimeout();
settimeout("fun()",1000);//1s後執行fun函式,只執行一次
setinterval("fun()",1000);//每隔1000毫秒執行一次fun函式
如何用settimeout模擬setinterval功能
函式遞迴: 函式自己呼叫自己
深層次看待定時器區別
setinterval是排隊執行的
間隔時間1s,而程式**執行需要2s,上次沒執行完的**先執行完,
立即下一次執行
1s開始執行第一次** 3s後執行完
2s.....................二。。。。,上次沒執行的完繼續執行
settimeout("fun()",1000); 3s
settimeout("fun()",1000)
介紹下arguments物件
1 arguments.length 獲取
實參的個數
2 arguments.callee; 返回的是正在執行的函式
字串:
1 用雙引號或單引號引起來的一組字元
2 其他非字串如何轉成字串
2+"abc"---->"2abc" 3+""---->"3"
string(10)結果就是 "10"
tostring() 10.tostring(2)
3 常用方法
charat(位置); 返回的是字串對應位置的那個字元
charcodeat (位置) 獲取相應位置字元unicode編碼
split() "abc-def-123".split("-") 結果 ["abc","def","123"]
contact() 字串連線
自學 indexof() substr() substring()
'a' ---- 97 'z'
'a' ---- 65
'0' ---- 48
hive 學習內容
1 hive的正則匹配搜尋表 show tables like sub name show tables like s 以s開頭的所有的 2檢視表結構 desc table name desc formatted table name 3檢視分割槽資訊 show partition table na...
學習內容分享
一 求 兩個數 30.30 和 40 的最大值?public class ex0031 system.out.println 最大值是 max 二 判斷公元1988年是否為閏年?可被4整除 但不可被100整除 為閏年,但是正百的年數必須是可以被400整除的才是閏年 public class ex00...
2016 12 06學習內容
節點查詢 父節點 parentnode 兄弟節點 下乙個兄弟 nextsibling ie6 78 識別 nextelementsibling 其他瀏覽器識別 相容處理 one.nextelementsibling one.nextsibling preivoussibling previousel...