1. document.write(”");為輸出語句
2. js中的注釋為//
3. 傳統的html文檔順序是:document->html->(head,body)
4. 一個瀏覽器窗口中的dom順序是:window->(navigator,screen,history,location,document)
5. 得到表單中元素的名稱和值:document.getelementbyid(”表單中元素的id號”).name(或value)
6. 一個小寫轉大寫的js: document.getelementbyid(”output”).value = document.getelementbyid(”input”).value.touppercase();
7. js中的值類型:string,number,boolean,null,object,function
8. js中的字符型轉換成數值型:parseint(),parsefloat()
9. js中的數字轉換成字符型:(”"+變量)
10. js中的取字符串長度是:(length);
* * * * *
11. js中的字符與字符相連接使用+號.
12. js中的比較操作符有:==等于,!=不等于,<,<=,>,>=,
13. js中聲明變量使用:var來進行聲明
14. js中的判斷語句結構:if(condition){}else{}
15. js中的循環結構:for([initial expression];[condition];[upadte expression]) {inside loop}
16. 循環中止的命令是:break
17. js中的函數定義:function functionname([parameter],…){statement[s]}
18. 當文件中出現多個form表單時.可以用document.forms[0],document.forms[1]來代替.
19. 窗口:打開窗口window.open(), 關閉一個窗口:window.close(), 窗口本身:self
20. 狀態欄的設置:window.status=”字符”;
* * * * *
21. 彈出提示信息:window.alert(”字符”);
22. 彈出確認框:window.confirm();
23. 彈出輸入提示框:window.prompt();
24. 指定當前顯示鏈接的位置:window.location.href=”url”
25. 取出窗體中的所有表單的數量:document.forms.length
26. 關閉文檔的輸出流:document.close();
27. 字符串追加連接符:+=
28. 創建一個文檔元素:document.createelement(),document.createtextnode()
29. 得到元素的方法:document.getelementbyid()
30. 引用一個文件式的js:<script type=”text/javascript” src=”aaa.js”></script>
* * * * *
31. 指定在不支持腳本的瀏覽器顯示的html:<noscript></noscript>
32. 當超鏈和onclick事件都有時,則老版本的瀏覽器轉向a.html,否則轉向b.html.例:<a href=”a.html” onclick=”location.href=’b.html’;return false”>dfsadf</a>
33. js 的內建對象 有:array,boolean,date,error,evalerror,function,math,number,object,rangeerror,referenceerror,regexp,string,syntaxerror,typeerror,urierror
34. 窗口全屏大小:<script>function fullscreen(){ this.moveto(0,0);this.outerwidth=screen.availwidth;this.outerheight=screen.availheight;}window.maximize=fullscreen;</script>
35. js中的all代表其下層的全部元素
36. js中的換行:/n
37. js中的焦點順序:document.getelementbyid(”表單元素”).tabindex = 1
38. innerhtml的值是表單元素的值:如how are you,則innerhtml的值就是:how are you
39. innertext的值和上面的一樣,只不過不會把em這種標記顯示出來.
40. contenteditable可設置元素是否可被修改,iscontenteditable返回是否可修改的狀態.
* * * * *
41. isdisabled判斷是否為禁止狀態.disabled設置禁止狀態
42. length取得長度,返回整型數值
43. addbehavior()是一種js調用的外部函數文件其擴展名為.htc
44. window.focus()使當前的窗口在所有窗口之前.
45. blur()指失去焦點.與focus()相反.
46. select()指元素為選中狀態.
47. 防止用戶對文本框中輸入文本:onfocus=”this.blur()”
48. 取出該元素在頁面中出現的數量:document.all.tags(”div(或其它html標記符)”).length
49. js中分為兩種窗體輸出:模態和非模態.window.showmodaldialog(),window.showmodeless()
50. 狀態欄文字的設置:window.status=‘文字’,默認的狀態欄文字設置:window.defaultstatus = ‘文字.’;
* * * * *
51. 添加到收藏夾:external.addfavorite(”http://www.google.com”,”google”);
52. js中遇到腳本錯誤時不做任何操作:window.onerror = donothing; 指定錯誤句柄的語法為:window.onerror = handleerror;
53. js中指定當前打開窗口的父窗口:window.opener,支持opener.opener…的多重繼續.
54. js中的self指的是當前的窗口
55. js中狀態欄顯示內容:window.status=”內容”
56. js中的top指的是框架集中最頂層的框架
57. js中關閉當前的窗口:window.close();
58. js中提出是否確認的框:if(confirm(”are you sure?”)){alert(”ok”);}else{alert(”not ok”);}
59. js中的窗口重定向:window.navigate(”http://www.google.com”);
60. js中的打印:window.print()
* * * * *
61. js中的提示輸入框:window.prompt(”message”,”defaultreply”);
62. js中的窗口滾動條:window.scroll(x,y)
63. js中的窗口滾動到位置:window.scrollby
64. js中設置時間間隔:setinterval(”expr”,msecdelay)或setinterval(funcref,msecdelay)或settimeout
65. js中的模態顯示在ie4+行,在nn中不行:showmodaldialog(”url”[,arguments][,features]);
66. js中的退出之前使用的句柄:function verifyclose(){event.returnvalue=”we really like you and hope you will stay longer.”;}} window.onbeforeunload=verifyclose;
67. 當窗體第一次調用時使用的文件句柄:onload()
68. 當窗體關閉時調用的文件句柄:onunload()
69. window.location的屬性: protocol(http:),hostname(www.example.com),port(80),host(www.example.com:80),pathname(”/a/a.html”),hash(”#giantgizmo”,指跳轉到相應的錨記),href(全部的信息)
70. window.location.reload()刷新當前頁面.
* * * * *
71. parent.location.reload()刷新父親對象(用于框架)
72. opener.location.reload()刷新父窗口對象(用于單開窗口)
73. top.location.reload()刷新最頂端對象(用于多開窗口)
74. window.history.back()返回上一頁,window.history.forward()返回下一頁,window.history.go(返回第幾頁,也可以使用訪問過的url)
75. document.write()不換行的輸出,document.writeln()換行輸出
76. document.body.nowrap=true;防止鏈接文字折行.
77. 變量名.charat(第幾位),取該變量的第幾位的字符.
78. "abc".charcodeat(第幾個),返回第幾個字符的ascii碼值.
79. 字符串連接:string.concat(string2),或用+=進行連接
80. 變量.indexof(”字符”,起始位置),返回第一個出現的位置(從0開始計算)
* * * * *
81. string.lastindexof(searchstring[,startindex])最后一次出現的位置.
82. string.match(regexpression),判斷字符是否匹配.
83. string.replace(regexpression,replacestring)替換現有字符串.
84. string.split(分隔符)返回一個數組存儲值.
85. string.substr(start[,length])取從第幾位到指定長度的字符串.
86. string.tolowercase()使字符串全部變為小寫.
87. string.touppercase()使全部字符變為大寫.
88. parseint(string[,radix(代表進制)])強制轉換成整型.
89. parsefloat(string[,radix])強制轉換成浮點型.
90. isnan(變量):測試是否為數值型.
* * * * *
91. 定義常量的關鍵字:const,定義變量的關鍵字:var
- 我的爛筆頭
- 1、常用功能方法整合
- 2、jQuery基本函數
- 3、在頁面中添加圖片
- 4、精度算法
- 5、圖片懶加載
- 6、彈窗拖拽功能
- 7、彈幕功能
- 8、鼠標滾動事件
- 9、獲取頁面相關屬性
- 10、彈窗的三種展現方式
- 11、輪播功能
- 12、獲取唯一標識
- 13、CSS樣式效果
- 14、任意兩點的動態連線
- 15、全新接口功能
- 16、適配兼容
- 17、無刷新頁面更改URL
- 18、定時器的那些事
- 19、關于iframe的常見問題
- 20、設置不同的時間
- 21、關于select-option
- 22、省市級聯
- 23、省市級聯數據
- 24、關于數據傳輸問題
- 25、問題分支
- 那些年我們一起走過的神坑
- 1、關于console的使用
- 2、關于數組
- 1、數組的賦值
- 2、數組的常用方法
- 3、關于移動端的bug
- 4、關于視頻的bug
- 5、那些坑坑洼洼
- 6、關于字符串
- 1、字符串的常用方法
- 頁面布局
- 1、背景固定的滾動頁面
- 心得
- Node.js
- 1、安裝環境
- ThinkPHP 5.1
- 1、訪問格式