RSS
热门关键字:  cms  下载  模版  开源  dedecms
Javascript
javascript手冊-p&q
parent property The parent property is a synonym for a window or frame whose frameset contains the current frame. 语法 1. parent. propertyName 2. parent. methodName 3. parent. frameName 4. parent.frames[ index ] propertyName is the defaultStatus, st...
作者:未知发表于:2002-08-27 20:12:00 点击:55 评论:0 查阅全文...
javascript手冊-m&n
Math object A built-in object that has properties and methods for mathematical constants and functions. For example, the Math object's PI property has the value of pi. 语法 To use a Math object: 1. Math. propertyName 2. Math. methodName ( parameters...
作者:未知发表于:2002-08-27 20:12:00 点击:29 评论:0 查阅全文...
javascript手冊-r
radio object A set of radio buttons on an htm form. A set of radio buttons lets the user choose one item from a list. 语法 To define a set of radio buttons, use standard htm 语法 with the addition of the onClick event handler: INPUT TYPE="radio" NAM...
作者:未知发表于:2002-08-27 20:12:00 点击:67 评论:0 查阅全文...
javascript手冊-i
index property An integer representing the index of an option in a select object. 语法 selectName .options[ indexValue ].index selectName is either the value of the NAME attribute of a select object or an element in the elements array. indexValue is...
作者:未知发表于:2002-08-27 20:12:00 点击:34 评论:0 查阅全文...
javascript手冊-g
getDate method Returns the day of the month for the specified date. 语法 dateObjectName .getDate() dateObjectName is either the name of a date object or a property of an existing object. 方法 Date 描述 The value returned by getDate is an integer bet...
作者:未知发表于:2002-08-27 20:12:00 点击:33 评论:0 查阅全文...
javascript手冊-f
fgColor property A string specifying the color of the document text. 语法 document.fgColor Property of document 描述 The fgColor property is expressed as a hexadecimal RGB triplet or as one of the string literals listed in Color Values. This propert...
作者:未知发表于:2002-08-27 20:12:00 点击:98 评论:0 查阅全文...
javascript手冊-d
Date object Lets you work with dates and times. 语法 To create a Date object: 1. dateObjectName = new Date()2. dateObjectName = new Date(" month day , year hours : minutes : seconds ")3. dateObjectName = new Date( year , month , day )4. dateObjectNa...
作者:未知发表于:2002-08-27 20:12:00 点击:86 评论:0 查阅全文...
javascript手冊-c
ceil method Returns the least integer greater than or equal to a number. 语法 Math.ceil( number ) number is any numeric expression or a property of an existing object. 用法 Math 例子 //Displays the value 46document.write("The ceil of 45.95 is " + Ma...
作者:未知发表于:2002-08-27 20:12:00 点击:59 评论:0 查阅全文...