|
屬性(1):
constructor 所建立對象的函數(shù)參考
prototype 能夠為對象加入的屬性和方法
方法(43):
getDay() 返回一周中的第幾天(0-6)
getYear() 返回年份.2000年以前為2位,2000(包含)以后為4位
getFullYear() 返回完整的4位年份數(shù)
getMonth() 返回月份數(shù)(0-11)
getDate() 返回日(1-31)
getHours() 返回小時數(shù)(0-23)
getMinutes() 返回分鐘(0-59)
getSeconds() 返回秒數(shù)(0-59)
getMilliseconds() 返回毫秒(0-999)
getUTCDay() 依據(jù)國際時間來得到現(xiàn)在是星期幾(0-6)
getUTCFullYear() 依據(jù)國際時間來得到完整的年份
getUTCMonth() 依據(jù)國際時間來得到月份(0-11)
getUTCDate() 依據(jù)國際時間來得到日(1-31)
getUTCHours() 依據(jù)國際時間來得到小時(0-23)
getUTCMinutes() 依據(jù)國際時間來返回分鐘(0-59)
getUTCSeconds() 依據(jù)國際時間來返回秒(0-59)
getUTCMilliseconds()依據(jù)國際時間來返回毫秒(0-999)
getTime() 返回從1970年1月1號0:0:0到現(xiàn)在一共花去的毫秒數(shù)
getTimezoneoffset() 返回時區(qū)偏差值,即格林威治平均時間(GMT)與運行腳本的計算機所處時區(qū)設(shè)置之間相差的分鐘數(shù))
parse(dateString) 返回在Date字符串中自從1970年1月1日00:00:00以來的毫秒數(shù)
setYear(yearInt) 設(shè)置年份.2位數(shù)或4位數(shù)
setFullYear(yearInt)設(shè)置年份.4位數(shù)
setMonth(monthInt) 設(shè)置月份(0-11)
setDate(dateInt) 設(shè)置日(1-31)
setHours(hourInt) 設(shè)置小時數(shù)(0-23)
setMinutes(minInt) 設(shè)置分鐘數(shù)(0-59)
setSeconds(secInt) 設(shè)置秒數(shù)(0-59)
setMilliseconds(milliInt) 設(shè)置毫秒(0-999)
setUTCFullYear(yearInt) 依據(jù)國際時間來設(shè)置年份
setUTCMonth(monthInt) 依據(jù)國際時間來設(shè)置月(0-11)
setUTCDate(dateInt) 依據(jù)國際時間來設(shè)置日(1-31)
setUTCHours(hourInt) 依據(jù)國際時間來設(shè)置小時
setUTCMinutes(minInt) 依據(jù)國際時間來設(shè)置分鐘
setUTCSeconds(secInt) 依據(jù)國際時間來設(shè)置秒
setUTCMilliseconds(milliInt)依據(jù)國際時間來設(shè)置毫秒
setTime(timeInt) 設(shè)置從1970年1月1日開始的時間.毫秒數(shù)
toGMTString() 根據(jù)格林威治時間將Date對象的日期(一個數(shù)值)轉(zhuǎn)變成一個GMT時間字符串,如:Weds,15 June l997 14:02:02 GMT
toUTCString() 根據(jù)通用時間將一個Date對象的日期轉(zhuǎn)換為一個字符串
toLocaleString() 把Date對象的日期(一個數(shù)值)轉(zhuǎn)變成一個字符串,使用所在計算機上配置使用的特定日期格式
toSource() 顯示對象的源代碼
toString() 將日期對象轉(zhuǎn)換為字符串
UTC(yyyy, mm, dd, hh, mm, ss, msec)返回從格林威治標準時間到指定時間的差距,單位為毫秒
valueOf() 返回日期對象的原始值
2.Math
屬性:
constructor 所建立對象的函數(shù)參考
prototype 能夠為對象加入的屬性和方法
E 歐拉常量,自然對數(shù)的底(約等于2.718)
LN2 2的自然對數(shù)(約等于0.693)
LN10 10的自然對數(shù)(約等于2.302)
LOG2E 以2為底的e的對數(shù).(約等于1.442)
LOG10E 以10為底的e的對數(shù)(約等于0.434)
PI ∏的值(約等于3.14159)
SQRT1_2 1/2(0.5)的平方根(即l除以2的平方根,約等于o.707)
SQRT2 2的平方根(約等于1.414)
方法:
abs(x) 返回數(shù)字的絕對值
acos(x) 返回數(shù)字的反余弦值
asin(x) 返回數(shù)字的反正弦值
atan(x) 返回位于-PI/2 和 PI/2 的反正切值
atan2(y,x) 返回(x,y)位于 -PI 到 PI 之間的角度
ceil(x) 返回 x 四舍五入后的最大整數(shù)
cos(x) 返回一個數(shù)字的余弦值
exp(x) 返回 E^x 值
floor(x) 返回 x 四舍五入后的最小整數(shù)
log(x) 返回底數(shù)為E的自然對數(shù)
max(x,y) 返回 x 和 y 之間較大的數(shù)
min(x,y) 返回 x 和 y 之間較小的數(shù)
pow(x,y) 返回 y^x 的值
random() 返回位于 0 到 1 之間的隨機函數(shù)
round(x) 四舍五入后取整
sin(x) 返回數(shù)字的正弦值
sqrt(x) 返回數(shù)字的平方根
tan(x) 返回一個角度的正切值
toSource() 顯示對象的源代碼
valueOf() 返回數(shù)學對象的原始值
3.Number
屬性:
MAX_VALUE The largest possible value a number in JavaScript can have 1.7976931348623157E+308
MIN_VALUE The smallest possible value a number in JavaScript can have 5E-324
NaN Equal to a value that is not a number.
NEGATIVE_INFINITY A value that is less than MIN_VALUE.
POSOTIVE_INFINITY A value that is greater than MAX_VALUE.
prototype A static property of the Number object
方法:
toString Returns a string representing the specified object
valueOf() 返回數(shù)學對象的原始值
4.Boolean
屬性:
constructor 所建立對象的函數(shù)參考
prototype 能夠為對象加入的屬性和方法
方法:
toSource() 顯示對象的源代碼
toString() 將布爾值轉(zhuǎn)換為字符串,并且返回結(jié)果
valueOf() 返回布爾對象的原始值
5.String
屬性:
constructor 所建立對象的函數(shù)參考
prototype 能夠為對象加入的屬性和方法
length 返回字符串的字符長度
方法(20):
anchor("name")用來把字符串轉(zhuǎn)換為HTML錨點標記內(nèi)(<A NAME=>)
big() 把字符串中的文本變成大字體(<BIG>)
blink() 把字符串中的文本變成閃爍字體(<BLINK>)
bold() 把字符串中的文本變成黑字體(<B>)
fixed() 把字符串中的文本變成固定間距字體,即電報形式(<TT>)
fontcolor(color)設(shè)置字符串中文本的顏色(<FONT COLOR=>)
Fontsize(size) 把字符串中的文本變成指定大小(<FONTSIZE=>)
italics() 把字符串中的文本變成斜字體(<I>)
Link(url)用來把字符串轉(zhuǎn)換-HTML鏈接標記中(<A HREF=>)
small() 把字符串中的文本變成小字體(<SMALL>)
strike() 把字符串中的文本變成劃掉字體(<STRIKE>)
sub() 把字符串中的文本變成下標(subscript)字體((SUB>)
sup() 把字符串中的文本變成上標(superscript)字體(<SUP>)
charAt(index) 返回指定索引處的字符
charCodeAt(index)返回一個整數(shù),該整數(shù)表示String對象中指定位置處的字符的Unicode編碼
concat(string2)連接兩條或多條字符串
fromCharCode(num1, num2, …, numN)獲取指定的Unicode值并返回字符串
indexOf(searchString, startIndex) 返回字符串中第一個出現(xiàn)指定字符串的位置
lastlndexOf(searchString, startIndex) 返回字符串中最后一個出現(xiàn)指定字符串的位置
match(regex) 在字符串中查找指定值
replace(regex, newString)將字符串中的某些字符替換成其它字符
search(regex) 針對某執(zhí)行值對字符串進行查找
slice(startIndex, endIndex)將部分字符抽出并在新的字符串中返回剩余部分
split(delimiter)將字符串分配為數(shù)組
substr(startIndex, length) 從startIndex取,取length個字符
substring(startIndex, endIndex) 從startIndex和endIndex之間的字符,不包括endIndex
toLowerCase() 把字符串中的文本變成小寫
toUpperCase() 把字符串中的文本變成大寫
toSource() 顯示對象的源代碼
valueOf() 返回字符串對象的原始值
6.Array
屬性:
constructor 所建立對象的函數(shù)參考
prototype 能夠為對象加入的屬性和方法
index For an array created by a regular expression_r match, the zero-based index of the match in the string.
input For an array created by a regular expression_r match, reflects the original string against which the regular expression_r was matched.
length 獲取數(shù)組元素的個數(shù),即最大下標加1
方法(13):
concat(array1,arrayn)將兩個或兩個以上的數(shù)組值連接起來,合并后返回結(jié)果
join(string) 將數(shù)組中元素合并為字符串,string為分隔符.如省略參數(shù)則直接合并,不再分隔
pop() 移除數(shù)組中的最后一個元素并返回該元素
push(value) 在數(shù)組的末尾加上一個或多個元素,并且返回新的數(shù)組長度值
reverse() 顛倒數(shù)組中元素的順序,反向排列
shift() 移除數(shù)組中的第一個元素并返回該元素
slice(start, deleteCount, [item1[, item2[,...[,itemN]]]]) 返從一個數(shù)組中移除一個或多個元素,如果必要,在所移除元素的位置上插入新元素,返回所移除的元素
sort(compare Function) 在未指定排序號的情況下,按照元素的字母順序排列,如果不是字符串類型則轉(zhuǎn)換成字符串再排序,返回排序后的數(shù)組
splice() 為數(shù)組刪除并添加新的元素
toSource() 顯示對象的源代碼
toString() 將數(shù)組所有元素返回一個字符串,其間用逗號分隔
unshift(value)為數(shù)組的開始部分加上一個或多個元素,并且返回該數(shù)組的新長度
valueOf() 返回數(shù)組對象的原始值
7.RegExp
屬性:
$1, ..., $9 Parenthesized substring matches, if any.
$_ See input.
$* See multiline.
$& See lastMatch.
$+ See lastParen.
$` See leftContext.
$' See rightContext.
global Whether or not to test the regular expression_r against all possible matches in a string, or only against the first.
ignoreCase Whether or not to ignore case while attempting a match in a string.
input The string against which a regular expression_r is matched.
lastIndex The index at which to start the next match.
lastMatch The last matched characters.
lastParen The last parenthesized substring match, if any.
leftContext The substring preceding the most recent match.
multiline Whether or not to search in strings across multiple lines.
rightContext The substring following the most recent match.
source The text of the pattern.
方法:
compile Compiles a regular expression_r object.
exec Executes a search for a match in its string parameter.
test Tests for a match in its string parameter
8.Function
屬性:
arguments An array corresponding to the arguments passed to a function.
arity Indicates the number of arguments expected by the function.
caller Specifies which function called the current function.
prototype Allows the addition of properties to a Function object.
方法:
toString Returns a string representing the specified object.
9.Object
屬性:
constructor Specifies the function that creates an object's prototype.
prototype Allows the addition of properties to all objects.
方法:
uates a string of JavaScript code in the context of the specified object.
toString Returns a string representing the specified object.
unwatch Removes a watchpoint from a 屬性源 the object.
valueOf Returns the primitive value of the specified object.
watch Adds a watchpoint to a 屬性源 the object.
10.全局
屬性:
Infinity 指定一個正負無窮大的數(shù)值
NaN 指定一個 “非數(shù)字” 值
undefined 指定一個未被賦值的變量
方法:
decodeURI() 為加密的URI進行解碼
decodeURIComponent() 為加密的URI組件解碼
encodeURI() 將字符串加密為URI
encodeURIComponent() 將字符串加密為URI組件
escape(string) 加密一個字符串
unescape() 使用escape()對一個字符串進行解碼
(string) 判斷一個字符串并將其以腳本代碼的形式執(zhí)行
isFinite(number) 檢測一個值是否為一個有限數(shù)字,返回True或False
isNaN(string) 檢測一個值是否不是一個有限數(shù)字
Number() 將一個對象的值轉(zhuǎn)換為一個數(shù)字
parseFloat(string) 將一個字符串解析為一個浮點數(shù)字
parseInt(string) 將一個字符串解析為一個整數(shù),不是四舍五入操作,而是切尾
String(object) 將一個對象值轉(zhuǎn)換為一個字符串
number(object)
11.事件
屬性:
a.窗口事件,只在body和frameset元素中才有效
onload 頁面或圖片加載完成時
onunload 用戶離開頁面時
b.表單元素事件,在表單元素中才有效
onchange 框內(nèi)容改變時
onsubmit 點擊提交按鈕時
onreset 重新點擊鼠標按鍵時
onselect 文本被選擇時
onblur 元素失去焦點時
onfocus 當元素獲取焦點時
c.鍵盤事件,在base,bdo,br,frame,frameset,head,html,iframe,meta,param,script,style,title元素里都無效
onkeydown 按下鍵盤按鍵時
onkeypress 按下或按住鍵盤按鍵時
onkeyup 放開鍵盤按鍵時
d.在base,bdo,br,frame,frameset,head,html,iframe,meta,param,script,style,title元素里都無效
onclick 鼠標點擊一個對象時
ondblclick 鼠標雙擊一個對象時
onmousedown 鼠標被按下時
onmousemove 鼠標被移動時
onmouseout 鼠標離開元素時
onmouseover 鼠標經(jīng)過元素時
onmouseup 釋放鼠標按鍵時
e.其他
onresize 當窗口或框架被重新定義尺寸時
onabort 圖片下載被打斷時
onerror 當加載文檔或圖片時發(fā)生錯誤時
自定義對象:有初始化對象和定義構(gòu)造函數(shù)的對象兩種方法
a:初始化對象
例如: 對象={屬性1:值1;屬性2:值2;......屬性n:值n} 注意:每個屬性/值對之間用分號隔開;
b: 定義構(gòu)造函數(shù)的對象
例如:
function 函數(shù)名(屬性1, 屬性2,......屬性N){
this.屬性1=屬性值1;
this.屬性2=屬性值2;
this.屬性n=屬性值n;
this.方法名1=函數(shù)名1;
this.方法名2=函數(shù)名2;
}
注意:方法名和函數(shù)名可以同名,但是在方法調(diào)用函數(shù)前,函數(shù)必須已經(jīng)定義好,否則會出錯
為自定義的函數(shù)創(chuàng)建新的實例一樣是使用 new 語句。
JavaScript技術(shù):JavaScript 內(nèi)置對象屬性及方法集合,轉(zhuǎn)載需保留來源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯(lián)系我們修改或刪除,多謝。