|
Kurs XHTML: 1.1, 1.0 / HTML: 4.01, 4.0, 3.2, 3.0, 2.0 / CSS: 2.1, 2.0, 1.0 z przykładami
[Start] •
[Elementy XHTML/HTML] •
[Atrybuty XHTML/HTML] •
[Style CSS]
[0]
[A]
[B]
[C]
[D]
[E]
[F]
[H]
[I]
[K]
[L]
[M]
[N]
[O]
[P]
[Q]
[R]
[S]
[T]
[U]
[V]
[W]
[Z]
onclick
OPIS
Definiuje reakcję na zdarzenie pochodzące od myszy i polegające na kliknięciu. Wtedy wywoływany jest zwykle jakiś skrypt, często jest to skrypt napisany w języku JavaScript.
WARTOŚCI
- • skrypt
- np. alert("Nastąpiła reakcja");
POZOSTAŁE CECHY
• używany w elementach:
a,
abbr,
acronym,
address,
area,
b,
big,
blockquote,
body,
button,
caption,
center,
cite,
code,
col,
colgroup,
dd,
del,
dfn,
dir,
div,
dl,
dt,
em,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
i,
img,
input,
ins,
kbd,
label,
legend,
li,
link,
map,
menu,
noframes,
noscript,
object,
ol,
optgroup,
option,
p,
pre,
q,
s,
samp,
select,
small,
span,
strike,
strong,
sub,
sup,
table,
tbody,
td,
textarea,
tfoot,
th,
thead,
tr,
tt,
u,
ul,
var
PRZYKŁADY ZASTOSOWAŃ • Przykład 1:
<a href="javascript:void(0)"
onclick="alert('Nastąpiła reakcja')">tutaj link</a>
tutaj link
|