Jump to content
Fórum Script Brasil
  • 0

Fazer Ele Aparecer O Ano Atual Em Outros Browsers


RClotz

Question

Eu tenho este script para gerar a data atual no campo mas ele retorna, com o ano corrente (2004) o valor "0104"...

Como por exemplo: 18/10/0104 ou 18/10/104

E isso acontesse quando eu rodo a mesma tela em outro browser diferente do IE. Tentei com o Netscape, Mozilla e Firefox mas deu no mesmo. Tudo indica que a função que pega o ano atual (yearNow) seja diferente o seu uso em outros browsers...

Caso tenham a solução e possam me passar, agradeço.

Aproveitando... gostaria de que se alguém tiver algum programa que converta scripts para outros browsers (caso exista algum), ou então...

algum tutorial ou arquivo de apoio para adquirir informações para executar as funções de javascript principalmente em browsers diferentes doIE ??

valeu!!!

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

olha só o como eu fiz:

  var	today =	new	Date() //data Atual
  var	dateNow  = today.getDate()  //novo dia 
  var monthNow = today.getMonth() +1 //novo mes
  var	yearNow  = today.getYear()  //novo ano 
  
                dia = new String(dateNow);
                if (dia.length < 2) dateNow = "0" + dateNow;
                mes = new String(monthNow);
                if (mes.length < 2) monthNow = "0" + monthNow;
                ano = new String(yearNow);
                if (ano.length < 4) yearNow = "0" + yearNow;

por aqui ele faz a verificação do campo, se o campo está escrito corretamente...

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...