Navigacija
Lista poslednjih: 16, 32, 64, 128 poruka.

JavaScript i Firefox problem

[es] :: Javascript i AJAX :: JavaScript i Firefox problem

[ Pregleda: 2124 | Odgovora: 2 ] > FB > Twit

Postavi temu Odgovori

Autor

Pretraga teme: Traži
Markiranje Štampanje RSS

Nebojsa11
NS

Član broj: 150600
Poruke: 4
*.ADSL.neobee.net.



Profil

icon JavaScript i Firefox problem03.07.2007. u 00:53 - pre 204 meseci
Pozdrav svima...

Da li je neko vec primetio da Firefox ima bugova u vezi JavaScript-a?

Recimo, ovaj JavaScript radi korektno u IE i u Operi, a u FF ne radi...

function ValidateForm2(){
var dt=document.form2.strMonth.options[form2.strMonth.selectedIndex].value + "/" + document.form2.strDay.options[form2.strDay.selectedIndex].value + "/" + document.form2.strYear.options[form2.strYear.selectedIndex].value;
if (!isDate(dt)){
return false;
}
dt=document.form2.strMonth1.options[form2.strMonth1.selectedIndex].value + "/" + document.form2.strDay1.options[form2.strDay1.selectedIndex].value + "/" + document.form2.strYear1.options[form2.strYear1.selectedIndex].value;
if (!isDate(dt)){
return false;
}
}

Ova funkcija u FF uvek vraca vrednost true i ako unesem 31.02.2007. IE i Opera rade korektno.
 
Odgovor na temu

bzero
dev null
europe

Član broj: 5907
Poruke: 371
*.dynamic.sbb.co.yu.

Jabber: bzero@elitesecurity.org
Sajt: www.google.com/search?q=b..


Profil

icon Re: JavaScript i Firefox problem03.07.2007. u 09:25 - pre 204 meseci
Meni se pre cini da ovaj kod ima bugova. Koliko vidim tvoja funkcija nikad ne vraca true.

Osim toga stavljaj kod u code tagove kod pisanja poruke, mnogo je preglednije.
Never trust an operating system you don't have sources for.
 
Odgovor na temu

Nebojsa11
NS

Član broj: 150600
Poruke: 4
*.ADSL.neobee.net.



Profil

icon Re: JavaScript i Firefox problem08.07.2007. u 17:36 - pre 204 meseci
Resio sam problem...

Pre je bilo

document.form2.strMonth.options[form2.strMonth.selectedIndex].value

a treba

document.form2.strMonth.options[document.form2.strMonth.selectedIndex].value
 
Odgovor na temu

[es] :: Javascript i AJAX :: JavaScript i Firefox problem

[ Pregleda: 2124 | Odgovora: 2 ] > FB > Twit

Postavi temu Odgovori

Navigacija
Lista poslednjih: 16, 32, 64, 128 poruka.