ホームページ  >  記事  >  ウェブフロントエンド  >  100以上のJavaScript関数と基本的な書き方_JavaScriptスキルを実践的にまとめたもの

100以上のJavaScript関数と基本的な書き方_JavaScriptスキルを実践的にまとめたもの

WBOY
WBOYオリジナル
2016-05-16 17:43:47924ブラウズ

1.document.write(""); は出力ステートメント
です。 2. JS のコメントは //
です。 3. 従来の HTML ドキュメントのシーケンスは次のとおりです: document->html->(head,body)
4. ブラウザ ウィンドウでの DOM の順序は次のとおりです: window->(navigator, screen, History, location, document)
5. 要素の名前と値を次の形式で取得します: document.getElementById("The ID 番号").name (または値)
6. JS の小文字から大文字へ: document.getElementById("output").value = document.getElementById("input").value の形式の要素の名前。 toUpperCase();
7. JS の値の型: String、Number、Boolean、Object、Function
8. JS の文字型を数値型に変換: parseInt()、parseFloat()
9 . 数値を文字に変換します: ("" 変数)
10. JS の文字列の長さは: (長さ)
11. JS の文字は数値を使用して結合されます。 == 等しい、!= 等しくない、>、>=、<.>13. JS で変数を宣言するには、var を使用して <.> を宣言します。 14. JS 構造での判定ステートメント: if(条件){}else{}
15. JS のループ構造: for([初期式];[条件];[upadte 式]) {ループ内}
16. ループが中止されました。 コマンドは次のとおりです。 Break
17. JS での関数定義: function functionName([parameter],...){statement[s]}
18. ファイル内に複数のフォームが含まれる場合、document .forms[0] を使用できます。代わりに、document.forms[1]。
19. ウィンドウを開く: window.open()、ウィンドウを閉じる: window.close()、ウィンドウ自体: self
20. ="キャラクター";

21. ポップアッププロンプトメッセージ: window.alert("キャラクター");
23.入力プロンプト ボックスを表示します: window.prompt();
24. 現在表示されているリンクの場所を指定します: window.location.href="URL"
25. フォーム内のすべてのフォームの数を取得します。 : document.forms.length
26. ドキュメントの出力ストリームを閉じる: document.close();
27. 文字列追加コネクタ: =
28. ドキュメント要素を作成する: document.createElement() .createTextNode()
29. 要素を取得するメソッド: document.getElementById()
30. フォーム内のすべてのテキスト メンバーの値を空に設定します:
var form = window.document.forms[ 0]
for (var i = 0; i

49. ファイルスタイルの JS を引用します:
50. スクリプトをサポートしていないブラウザーに表示される HTML を指定します:
51. ハイパーリンクと ONCLICK イベントの両方がある場合、古いバージョンのブラウザは a.html にリダイレクトされ、それ以外の場合は b.html にリダイレクトされます。 例:
dfsadf 52.JS 組み込みオブジェクトは次のとおりです: Array、Boolean、Date、Error、EvalError、Function、Math、Number、Object、RangeError、ReferenceError、RegExp、String、SyntaxError、TypeError、URIError
53。 JS でのブレーク: n
54. ウィンドウの全画面サイズ:

55. JS での all はその下のすべての要素を表します

56. JS でのフォーカス順序: document.getElementByid("Form Element").tabIndex = 1
57.innerHTML の値は、form 要素の値です。

「元気ですか あなた

など, then the value of innerHTML is: how are you
58. The value of innerTEXT is the same as above, except that the tag will not be displayed.
59.contentEditable can Set whether the element can be modified, isContentEditable returns the status of whether it can be modified.
60.isDisabled determines whether it is a prohibited state. disabled sets the prohibited state
61.length gets the length and returns an integer value
62.addBehavior () is an external function file called by JS. Its extension is .htc
63.window.focus() puts the current window in front of all windows.
64.blur() means losing focus. With FOCUS () on the contrary.
65.select() means that the element is selected.
66. Prevent the user from entering text in the text box: onfocus="this.blur()"
67. Remove the element in The number of occurrences in the page: document.all.tags("div (or other HTML tags)").length
68. There are two types of form output in JS: modal and non-modal.window.showModaldialog (), window.showModeless()
69. Status bar text setting: window.status='text', default status bar text setting: window.defaultStatus = 'text.';

70 .Add to favorites: external.AddFavorite("http://www.google.com","Google");
71. Do nothing when encountering a script error in JS: window.onerror = doNothing; The syntax for specifying an error handle is: window.onerror = handleError;
In 72.JS, specify the parent window of the currently opened window: window.opener, which supports multiple continuations of opener.opener....
In 73.JS The self refers to the current window
74. The status bar display content in JS: window.status="content"
75. The top in JS refers to the top-most frame in the frame set
76. Close the current window in JS: window.close();
77. Ask whether to confirm the box in JS: if(confirm("Are you sure?")){alert("ok");}else{alert ("Not Ok");}
78.Window redirection in JS: window.navigate("http://www.google.com");
79.Print in JS: window.print ()
Prompt input box in 80.JS: window.prompt("message","defaultReply");
Window scroll bar in 81.JS: window.scroll(x,y)
82.Scroll the window to the position in JS: window.scrollby
83.Set the time interval in JS: setInterval("expr",msecDelay) or setInterval(funcRef,msecDelay) or setTimeout
84.Module in JS The state is displayed in IE4, but not in NN: showModalDialog("URL"[,arguments][,features]);
85. The handle used before exiting in JS: function verifyClose(){event.returnValue=" we really like you and hope you will stay longer.";}} window.onbeforeunload=verifyClose;
86. The file handle used when the form is called for the first time: onload()
87. When the form File handle called when closing: onunload()
Properties of 88.window.location: protocol(http:),hostname(www.example.com),port(80),host(www.example.com:80 ), pathname("/a/a.html"), hash("#giantGizmo", refers to jumping to the corresponding anchor), href (all information)
89.window.location.reload() refresh Current page.
89-1.parent.location.reload() refreshes the parent object (for frames)
89-2.opener.location.reload() refreshes the parent window object (for single-open windows)
89-3.top.location.reload() refreshes the top object (for multiple windows)

90.window.history.back() returns to the previous page, window.history.forward () Return to the next page, window.history.go (return to the page, you can also use the visited URL)
91.document.write() output without line breaks, document.writeln() line break output
92.document.body.noWrap=true; Prevent link text from wrapping.
93.Variable name.charAt(number), take the character of the variable.
94."abc" .charCodeAt(number), returns the ASCii code value of which character.
95. String connection: string.concat(string2), or use = to connect
96. Variable.indexOf("Character ", starting position), returns the position of the first occurrence (calculated from 0)
97.string.lastIndexOf(searchString[,startIndex]) the position of the last occurrence.
98.string.match( regExpression), determine whether the characters match.
99.string.replace(regExpression,replaceString) replaces the existing string.
100.string.split (separator) returns an array storage value.
101. string.substr(start[,length]) takes the string from the digit to the specified length.
102.string.toLowerCase() makes the string all lowercase.
103.string.toUpperCase() Make all characters uppercase.
104.parseInt(string[,radix (representing base)]) is forced to be converted to an integer type.
105.parseFloat(string[,radix]) is forced to be converted to a floating point type .
106.isNaN (variable): Test whether it is a numeric type.
107. Keywords for defining constants: const, keywords for defining variables: var

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。