| HTML <=> Script |
|
| |
javascript: |
|
| |
<SCRIPT> |
|
| |
<SCRIPT src=> |
|
| |
|
|
| Comments |
|
| |
// |
JS1.0/NS2.0/IE3.0 |
| |
/* */ |
JS1.0/NS2.0/IE3.0 |
| |
|
|
| Commands |
|
| |
break |
JS1.0/N2.0/IE3.0 |
| |
continue |
JS1.0/N2.0/IE3.0 |
| |
else |
JS1.0/N2.0/IE3.0 |
| |
for |
JS1.0/N2.0/IE3.0 |
| |
for in |
JS1.0/N2.0/IE3.0 |
| |
function |
JS1.0/N2.0/IE3.0 |
| |
if |
JS1.0/N2.0/IE3.0 |
| |
new |
JS1.0/N2.0/IE3.0 |
| |
return |
JS1.0/N2.0/IE3.0 |
| |
self |
JS1.0/N2.0/IE3.0 |
| |
this |
JS1.0/N2.0/IE3.0 |
| |
var |
JS1.0/N2.0/IE3.0 |
| |
while |
JS1.0/N2.0/IE3.0 |
| |
with() |
JS1.0/N2.0/IE3.0 |
| |
|
|
| Operator |
|
| |
() --- Priority 15 |
JS1.0/N2.0/IE3.0 |
| |
[] (Array element) --- Priority 15 |
JS1.0/N2.0/IE3.0 |
| |
. (subelement access) --- Priority 15 |
JS1.0/N2.0/IE3.0 |
| |
! (Logical NOT) --- Priority 14 |
JS1.0/N2.0/IE3.0 |
| |
~ (Binary NOT) --- Priority 14 |
JS1.0/N2.0/IE3.0 |
| |
- (Negative) --- Priority 14 |
JS1.0/N2.0/IE3.0 |
| |
++ (Calculation) --- Priority 14
Preincrement
Postincrement |
JS1.0/N2.0/IE3.0
JS1.0/N2.0/IE3.0 |
| |
-- (Calculation) --- Priority 14
Predecrement
Postdecrement |
JS1.0/N2.0/IE3.0
JS1.0/N2.0/IE3.0 |
| |
* (Calculation) --- Priority 13 |
JS1.0/N2.0/IE3.0 |
| |
/ (Calculation) --- Priority 13 |
JS1.0/N2.0/IE3.0 |
| |
% (Calculation) --- Priority 13 |
JS1.0/N2.0/IE3.0 |
| |
+ (Calculation) --- Priority 12 |
JS1.0/N2.0/IE3.0 |
| |
+ (String operator) --- Priority 12 |
JS1.0/N2.0/IE3.0 |
| |
- (Calculation) --- Priority 12 |
JS1.0/N2.0/IE3.0 |
| |
<< (Arithmetical shift left) --- Priority 11 |
JS1.0/N2.0/IE3.0 |
| |
>> (Arithmetical shift right) --- Priority 11 |
JS1.0/N2.0/IE3.0 |
| |
>>> (Unsigned binary shift right) --- Priority 11 |
JS1.2 |
| |
< (Comparison) --- Priority 10 |
JS1.0/N2.0/IE3.0 |
| |
<= (Comparison) --- Priority 10 |
JS1.0/N2.0/IE3.0 |
| |
> (Comparison) --- Priority 10 |
JS1.0/N2.0/IE3.0 |
| |
>= (Comparison) --- Priority 10 |
JS1.0/N2.0/IE3.0 |
| |
== (Comparison) --- Priority 9 |
JS1.0/N2.0/IE3.0 |
| |
== (Strict comparison) --- Priority 9 |
JS1.2 |
| |
!= (Comparison) --- Priority 9 |
JS1.0/N2.0/IE3.0 |
| |
!== (Strict comparison) --- Priority 9 |
JS1.2 |
| |
& (Binary AND) --- Priority 8 |
JS1.0/N2.0/IE3.0 |
| |
^ (Binary XOR) --- Priority 7 |
JS1.0/N2.0/IE3.0 |
| |
| (Binary OR) --- Priority 6 |
JS1.0/N2.0/IE3.0 |
| |
&& (Logical) --- Priority 5 |
JS1.0/N2.0/IE3.0 |
| |
|| (Logical) --- Priority 4 |
JS1.0/N2.0/IE3.0 |
| |
?: (Conditional) --- Priority 3 |
JS1.0/N2.0/IE3.0 |
| |
= (Assignment) --- Priority 2 |
JS1.0/N2.0/IE3.0 |
| |
+= (Assignment) --- Priority 2 |
JS1.0/N2.0/IE3.0 |
| |
-= (Assignment) --- Priority 2 |
JS1.0/N2.0/IE3.0 |
| |
<<= (Assignment) --- Priority 2 |
|
| |
>>= (Assignment) --- Priority 2 |
|
| |
>>>= (Assignment) --- Priority 2 |
|
| |
&= (Assignment) --- Priority 2 |
|
| |
|= (Assignment) --- Priority 2 |
|
| |
^= (Assignment) --- Priority 2 |
|
| |
%= (Assignment) --- Priority 2 |
|
| |
*= (Assignment) --- Priority 2 |
|
| |
/= (Assignment) --- Priority 2 |
|
| |
, (Separator) |
JS1.0/N2.0/IE3.0 |
| |
|
|
| Common functions |
|
| |
escape() |
JS1.0/N2.0/IE3.0 |
| |
eval() |
JS1.0/N2.0/IE3.0 |
| |
isNaN() |
JS1.1/N3.0/IE4.0 |
| |
parseFloat() |
JS1.0/N2.0/IE3.0 |
| |
parseInt() |
JS1.0/N2.0/IE3.0 |
| |
unescape() |
JS1.0/N2.0/IE3.0 |
| |
|
|
| all[] |
IE4.0 |
| |
getAttribute() |
IE4.0 |
| |
id |
IE4.0 |
| |
innerHTML |
IE4.0 |
| |
innerText |
IE4.0 |
| |
lang |
IE4.0 |
| |
language |
IE4.0 |
| |
length |
IE4.0 |
| |
name |
IE4.0 |
| |
offsetHeight |
IE4.0 |
| |
offsetLeft |
IE4.0 |
| |
offsetTop |
IE4.0 |
| |
offsetWidth |
IE4.0 |
| |
outerHTML |
IE4.0 |
| |
outerText |
IE4.0 |
| |
parentElement |
IE4.0 |
| |
removeAttribute() |
IE4.0 |
| |
scrollIntoView |
IE4.0 |
| |
setAttribute() |
IE4.0 |
| |
sourceIndex |
IE4.0 |
| |
tagName |
IE4.0 |
| |
title |
IE4.0 |
| |
|
|
| anchors[] |
|
| |
length (R) |
JS1.0/N2.0/IE3.0 |
| |
name |
|
| |
|
|
| applets[] |
|
| |
length (R) |
JS1.0/N2.0/IE3.0 |
| |
|
|
| Array (Object) |
|
| |
concat() |
JS1.1/N3.0/IE4.0 |
| |
join() |
JS1.1/N3.0/IE4.0 |
| |
length (R) |
JS1.0/N2.0/IE3.0 |
| |
pop() (letztes Array-Element löschen) |
|
| |
push() (neue Array-Elemente anhängen) |
|
| |
reverse() |
JS1.1/N3.0/IE4.0 |
| |
shift() (Erstes Array-Element entfernen) |
|
| |
slice() (Teil-Array extrahieren) |
|
| |
sort() |
JS1.1/N3.0/IE4.0 |
| |
splice() (Elemente löschen und hinzufügen) |
|
| |
unshift() (Elemente am Array-Anfang einfügen) |
|
| |
|
|
| Boolean (Object) |
|
| |
|
|
| Date (Object) |
|
| |
getDate() |
JS1.0/N2.0/IE3.0 |
| |
getDay() |
JS1.0/N2.0/IE3.0 |
| |
getFullYear() (volles Jahr ermitteln) |
|
| |
getHours() |
JS1.0/N2.0/IE3.0 |
| |
getMilliseconds() (Millisekunden ermitteln) |
|
| |
getMinutes() |
JS1.0/N2.0/IE3.0 |
| |
getMonth() |
JS1.0/N2.0/IE3.0 |
| |
getSeconds() |
JS1.0/N2.0/IE3.0 |
| |
getTime() |
JS1.0/N2.0/IE3.0 |
| |
getTimezoneOffset() |
JS1.0/N2.0/IE3.0 |
| |
getUTCDate() (Monatstag von UTC-Zeit ermitteln) |
|
| |
getUTCDay() (Wochentag von UTC-Zeit ermitteln) |
|
| |
getUTCFullYear() (volles Jahr von UTC-Zeit ermitteln) |
|
| |
getUTCHours() (Stundenteil der UTC-Uhrzeit ermitteln) |
|
| |
getUTCMilliseconds() (Millisekundenteil der UTC-Uhrzeit ermitteln) |
|
| |
getUTCMinutes() (Minutenteil der UTC-Uhrzeit ermitteln) |
|
| |
getUTCMonth()(Monat von UTC-Uhrzeit ermitteln) |
|
| |
getUTCSeconds()(Sekundenteil der UTC-Uhrzeit ermitteln) |
|
| |
getYear() |
JS1.0/N2.0/IE3.0 |
| |
parse() |
JS1.0/N2.0/IE3.0 |
| |
setDate() |
JS1.0/N2.0/IE3.0 |
| |
Date.setFullYear() (volles Jahr setzen) |
|
| |
setHours() |
JS1.0/N2.0/IE3.0 |
| |
Date.setMilliseconds() (Millisekunden setzen) |
|
| |
setMinutes() |
JS1.0/N2.0/IE3.0 |
| |
setSeconds() |
JS1.0/N2.0/IE3.0 |
| |
setTime() |
JS1.0/N2.0/IE3.0 |
| |
setUTCDate() (Monatstag für UTC-Zeit setzen) |
|
| |
setUTCFullYear() (volles Jahr für UTC-Zeit setzen) |
|
| |
setUTCHours() (Stunden der UTC-Zeit setzen) |
|
| |
setUTCMilliseconds() (Millisekunden der UTC-Zeit setzen) |
|
| |
setUTCMinutes() (Minuten der UTC-Zeit setzen) |
|
| |
setUTCMonth() (Monat für UTC-Zeit setzen) |
|
| |
setUTCSeconds() (Sekunden der UTC-Zeit setzen) |
|
| |
setYear() |
JS1.0/N2.0/IE3.0 |
| |
toGMTString() |
JS1.0/N2.0/IE3.0 |
| |
toLocaleString() |
JS1.0/N2.0/IE3.0 |
| |
UTC() |
JS1.0/N2.0/IE3.0 |
| |
|
|
| document |
|
| |
alinkColor (RW) |
JS1.0/N2.0/IE3.0 |
| |
all |
IE4.0 |
| |
anchors (R) |
JS1.0/N2.0/IE3.0 |
| |
applets (R) |
JS1.0/N2.0/IE3.0 |
| |
bgColor (RW) |
JS1.0/N2.0/IE3.0 |
| |
close() |
JS1.0/N2.0/IE3.0 |
| |
cookie (RW) |
JS1.0/N2.0/IE3.0 |
| |
fgColor (RW) |
JS1.0/N2.0/IE3.0 |
| |
getElementById() |
JS1.5/N6.0/IE5.0 |
| |
lastModified (R) |
JS1.0/N2.0/IE3.0 |
| |
linkColor (RW) |
JS1.0/N2.0/IE3.0 |
| |
open() |
JS1.0/N2.0/IE3.0 |
| |
referrer R(W) |
JS1.0/N2.0/IE3.0 |
| |
title (R) |
JS1.0/N2.0/IE3.0 |
| |
vlinkColor (RW) |
JS1.0/N2.0/IE3.0 |
| |
URL (R) |
JS1.0/N2.0/IE3.0 |
| |
write() |
JS1.0/N2.0/IE3.0 |
| |
writeln() |
JS1.0/N2.0/IE3.0 |
| |
|
|
| elements[] |
|
| |
blur() |
JS1.0/N2.0/IE3.0 |
| |
checked (RW) |
JS1.0/N2.0/IE3.0 |
| |
click() |
JS1.0/N2.0/IE3.0 |
| |
defaultChecked (RW) |
JS1.0/N2.0/IE3.0 |
| |
defaultValue (RW) |
JS1.0/N2.0/IE3.0 |
| |
focus() |
JS1.0/N2.0/IE3.0 |
| |
form (R) |
JS1.0/N2.0/IE3.0 |
| |
name (RW) |
JS1.0/N2.0/IE3.0 |
| |
select() |
JS1.0/N2.0/IE3.0 |
| |
type (R) |
JS1.0/N2.0/IE3.0 |
| |
value (RW) |
JS1.0/N2.0/IE3.0 |
| |
|
|
| forms[] |
|
| |
action (RW) |
JS1.0/N2.0/IE3.0 |
| |
encoding (RW) |
JS1.0/N2.0/IE3.0 |
| |
length (R) |
JS1.0/N2.0/IE3.0 |
| |
method (RW) |
JS1.0/N2.0/IE3.0 |
| |
name (RW) |
JS1.0/N2.0/IE3.0 |
| |
reset() |
JS1.1/N3.0/IE4.0 |
| |
submit() |
JS1.0/N2.0/IE3.0 |
| |
target (RW) |
JS1.0/N2.0/IE3.0 |
| |
|
|
| Function (Object) |
|
| |
arguments (R) |
JS1.1/N3.0/IE4.0 |
| |
caller (R) |
JS1.1/N3.0/IE4.0 |
| |
|
|
| history |
|
| |
back() |
JS1.0/N2.0/IE3.0 |
| |
forward() |
JS1.0/N2.0/IE3.0 |
| |
go() |
JS1.0/N2.0/IE3.0 |
| |
length (R) |
JS1.0/N2.0/IE3.0 |
| |
|
|
| images[] |
|
| |
length (R) |
JS1.0/N2.0/IE3.0 |
| |
|
|
| Image (Object) |
|
| |
border (R) |
JS1.1/N3.0/IE4.0 |
| |
complete (R) |
JS1.1/N3.0/IE4.0 |
| |
height (R) |
JS1.1/N3.0/IE4.0 |
| |
hspace (R) |
JS1.1/N3.0/IE4.0 |
| |
lowsrc (R) |
JS1.1/N3.0/IE4.0 |
| |
name (R) |
JS1.1/N3.0/IE4.0 |
| |
src (RW) |
JS1.0/N2.0/IE3.0 |
| |
vspace (R) |
JS1.1/N3.0/IE4.0 |
| |
width (R) |
JS1.1/N3.0/IE4.0 |
| |
x |
N4.0 |
| |
y |
N4.0 |
| |
|
|
| links[] |
JS1.0/N2.0/IE3.0 |
| |
length (R) |
JS1.0/N2.0/IE3.0 |
| |
|
|
| location |
JS1.0/N2.0/IE3.0 |
| |
hash (RW) |
JS1.0/N2.0/IE3.0 |
| |
host (RW) |
JS1.0/N2.0/IE3.0 |
| |
hostname (RW) |
JS1.0/N2.0/IE3.0 |
| |
href (RW) |
JS1.0/N2.0/IE3.0 |
| |
pathname (RW) |
JS1.0/N2.0/IE3.0 |
| |
port (RW) |
JS1.0/N2.0 |
| |
protocol (RW) |
JS1.0/N2.0 |
| |
reload() |
JS1.1/N3.0/IE4.0 |
| |
replace() |
JS1.1/N3.0/IE4.0 |
| |
search (RW) |
JS1.0/N2.0 |
| |
|
|
| Math |
|
| |
abs() |
JS1.0/N2.0/IE3.0 |
| |
acos() |
JS1.0/N2.0/IE3.0 |
| |
asin() |
JS1.0/N2.0/IE3.0 |
| |
atan() |
JS1.0/N2.0/IE3.0 |
| |
ceil() |
JS1.0/N2.0/IE3.0 |
| |
cos() |
JS1.0/N2.0/IE3.0 |
| |
E (R) |
JS1.0/N2.0/IE3.0 |
| |
exp() |
JS1.0/N2.0/IE3.0 |
| |
floor() |
JS1.0/N2.0/IE3.0 |
| |
LN2 (R) |
JS1.0/N2.0/IE3.0 |
| |
LN10 (R) |
JS1.0/N2.0/IE3.0 |
| |
log() |
JS1.0/N2.0/IE3.0 |
| |
LOG2E (R) |
JS1.0/N2.0/IE3.0 |
| |
LOG10E (R) |
JS1.0/N2.0/IE3.0 |
| |
max() |
JS1.0/N2.0/IE3.0 |
| |
min() |
JS1.0/N2.0/IE3.0 |
| |
PI (R) |
JS1.0/N2.0/IE3.0 |
| |
pow() |
JS1.0/N2.0/IE3.0 |
| |
random() |
JS1.0/N2.0/IE3.0 |
| |
round() |
JS1.0/N2.0/IE3.0 |
| |
sin() |
JS1.0/N2.0/IE3.0 |
| |
sqrt() |
JS1.0/N2.0/IE3.0 |
| |
SQRT1_2 (R) |
JS1.0/N2.0/IE3.0 |
| |
SQRT2 (R) |
JS1.0/N2.0/IE3.0 |
| |
tan() |
JS1.0/N2.0/IE3.0 |
| |
|
|
| mimeTypes[] |
JS1.1/N3.0 |
| |
description (R) |
JS1.1/N3.0 |
| |
enabledPlugin (R) |
JS1.1/N3.0 |
| |
length (R) |
JS1.1/N3.0 |
| |
suffixes (R) |
JS1.1/N3.0 |
| |
type (R) |
JS1.1/N3.0 |
| |
|
|
| Navigator |
JS1.0/N2.0/IE3.0 |
| |
appCodeName (R) |
JS1.0/N2.0/IE3.0 |
| |
appName (R) |
JS1.0/N2.0/IE3.0 |
| |
appVersion (R) |
JS1.0/N2.0/IE3.0 |
| |
cookieEnabled |
|
| |
javaEnabled |
JS1.1/N3.0/IE4.0 |
| |
platform (R) |
JS1.2/N4.0 |
| |
userAgent (R) |
JS1.0/N2.0/IE3.0 |
| |
|
|
| Number |
JS1.0/N2.0/IE3.0 |
| |
MAX_VALUE (R) |
JS1.0/N2.0/IE3.0 |
| |
MIN_VALUE (R) |
JS1.0/N2.0/IE3.0 |
| |
NaN (R) |
JS1.1/N3.0/IE4.0 |
| |
NEGATIVE_INFINITY (R) |
JS1.1/N3.0/IE4.0 |
| |
POSITIVE_INFINITY (R) |
JS1.1/N3.0/IE4.0 |
| |
|
|
| options[] |
JS1.0/N2.0/IE3.0 |
| |
defaultSelected (RW) |
JS1.1/N3.0/IE4.0 |
| |
length (R) |
JS1.0/N2.0/IE3.0 |
| |
selected (RW) |
JS1.0/N2.0/IE3.0 |
| |
selectedIndex (RW) |
JS1.0/N2.0/IE3.0 |
| |
text (RW) |
JS1.0/N2.0/IE3.0 |
| |
value (RW) |
JS1.0/N2.0/IE3.0 |
| |
|
|
| plugins[] |
|
| |
description (R) |
JS1.1/N3.0 |
| |
filename (R) |
JS1.1/N3.0 |
| |
length (R) |
JS1.1/N3.0 |
| |
name (R) |
JS1.1/N3.0 |
| |
|
|
| screen |
|
| |
screen.availHeight (verfügbare Höhe) |
|
| |
screen.availWidth (verfügbare Breite) |
|
| |
screen.colorDepth (Farbtiefe) |
|
| |
screen.height (Höhe) |
|
| |
screen.pixelDepth (Farbauflösung) |
|
| |
screen.width (Breite |
|
| |
|
|
| String |
JS1.0/N2.0/IE3.0 |
| |
big() |
JS1.0/N2.0/IE3.0 |
| |
blink() |
JS1.0/N2.0 |
| |
bold() |
JS1.0/N2.0/IE3.0 |
| |
charAt() |
JS1.0/N2.0/IE3.0 |
| |
fixed() |
JS1.0/N2.0/IE3.0 |
| |
fontcolor() |
JS1.0/N2.0/IE3.0 |
| |
fontsize() |
JS1.0/N2.0/IE3.0 |
| |
indexOf() |
JS1.0/N2.0/IE3.0 |
| |
italics() |
JS1.0/N2.0/IE3.0 |
| |
lastIndexOf() |
JS1.0/N2.0/IE3.0 |
| |
length (R) |
JS1.0/N2.0/IE3.0 |
| |
link() |
JS1.0/N2.0/IE3.0 |
| |
slice() |
JS1.0/N2.0/IE3.0 |
| |
small() |
JS1.0/N2.0/IE3.0 |
| |
split() |
JS1.0/N2.0/IE3.0 |
| |
strike() |
JS1.0/N2.0/IE3.0 |
| |
sub() |
JS1.0/N2.0/IE3.0 |
| |
substr() |
JS1.0/N2.0/IE3.0 |
| |
substring() |
JS1.0/N2.0/IE3.0 |
| |
sup() |
JS1.0/N2.0/IE3.0 |
| |
toLowerCase() |
JS1.0/N2.0/IE3.0 |
| |
toUpperCase() |
JS1.0/N2.0/IE3.0 |
| |
|
|
| window |
|
| |
alert() |
JS1.0/N2.0/IE3.0 |
| |
back() (zurück in History) |
|
| |
blur() |
JS1.1/N3.0/IE4.0 |
| |
clearTimeout() |
JS1.0/N2.0/IE3.0 |
| |
close() |
JS1.0/N2.0/IE3.0 |
| |
closed (R) |
JS1.1/N3.0/IE4.0 |
| |
confirm() |
JS1.0/N2.0/IE3.0 |
| |
defaultStatus (RW) |
JS1.0/N2.0/IE3.0 |
| |
focus() |
JS1.1/N3.0 |
| |
innerHeight |
|
| |
innerWidth |
|
| |
locationbar |
|
| |
menubar |
|
| |
name (RW) |
JS1.0/N2.0/IE3.0 |
| |
opener |
JS1.1/N3.0/IE4.0 |
| |
outerHeight |
|
| |
outerWidth |
|
| |
pageXOffset (R) |
JS1.1/N3.0/IE4.0 |
| |
pageYOffset |
|
| |
personalbar |
|
| |
prompt() |
JS1.0/N2.0/IE3.0 |
| |
scrollbars |
|
| |
scrollBy() |
|
| |
scrollTo() |
JS1.1/N3.0/IE4.0 |
| |
setTimeout() |
JS1.0/N2.0/IE3.0 |
| |
status (RW) |
JS1.0/N2.0/IE3.0 |
| |
statusbar |
|
| |
toolbar |
|