Cette libre de HTML JavaScript tutorial fournit 45 + JavaScript/jQuery conseils et astuces qui vous aideront
- Demo
- Agrandir
- Recharger
- New window
G�n�rez vos vid�os d'entreprise par l'IA avec la voix ou simplement du texte
Votre premi�re application vid�o AI GRATUITE ! Automatisez votre premi�re vid�o AI. Cr�ez votre vid�o professionnelle en 5 minutes gr�ce � l'IA. Aucun �quipement ni comp�tence en montage vid�o requis. Production vid�o sans effort pour les sp�cialistes du marketing de contenu.
1.
$().ready(
function
() {
2.
$(
'#add'
).click(
function
() {
3.
!$(
'#select1 option:selected'
).appendTo(
'#select2'
);
4.
});
5.
$(
'#remove'
).click(
function
() {
6.
!$(
'#select2 option:selected'
).appendTo(
'#select1'
);
7.
});
8.
});
1.
$(document).ready(
function
(){
2.
$(
"#checkboxall"
).change(
function
(){
3.
var
checked_status =
this
.checked;
4.
$(
"input[name=checkall]"
).attr(
"checked"
, checked_status);
5.
});
6.
7.
});
1.
$(document).ready(
function
() {
2.
var
pathname = window.location.pathname;
3.
});
01.
$(
function
() {
02.
$(document).keypress(
function
(e){
03.
switch
(e.which){
04.
// "ENTER"
05.
case
13:
06.
alert(
'enter pressed'
);
07.
break
;
08.
09.
// "s"
10.
case
115:
11.
alert(
's pressed'
);
12.
break
;
13.
14.
(...)
15.
16.
}
17.
});
18.
19.
});
1.
$(
'#target div:not(#exclude)'
).hide();
2.
//or
3.
$(
'#target'
).children().filter(
':not(#exclude)'
).hide();
1.
$(
'element'
).bind(
'resize'
,
function
(){
2.
alert(
'Height changed to'
+ $(
this
).height() );
3.
}
1.
$(
'someTableSelector'
).find(
'tr:gt(0)'
).remove();
1.
1 level:
2.
$(
'*:not(* *)'
);
3.
2 level:
4.
$(
'*:not(* *)'
).find(
'> *'
);
5.
3 level:
6.
$(
'*:not(* *)'
).find(
'> * > *'
);
1.
var
foundin = $(
'*:contains("some string bla bla")'
);
1.
alert($(document).scrollTop());
- Sent (0)
- Nouveau