Pesquisar no site de suporte

Evite golpes de suporte. Nunca pedimos que você ligue ou envie uma mensagem de texto para um número de telefone, ou compartilhe informações pessoais. Denuncie atividades suspeitas usando a opção “Denunciar abuso”.

Learn More

Enable null values assignments in javascript..without stopping the program flow. Same code is ok in IE8

  • 1 resposta
  • 1 tem este problema
  • 12 visualizações
  • Última resposta de cor-el

more options

I have the following code which is falling over in Firefox, while in other browsers like IE, Chrome and Opera is passing through even though the value in the array at that point of time is null.

var vitemp = document.getElementById('F06_'+ij).value;

In firefox, i get the error below.

[18:59:35.747] TypeError: document.getElementById(...) is null @ http://

How can i change the firefox parameters so as to be less strict for null value assignments ?

I have the following code which is falling over in Firefox, while in other browsers like IE, Chrome and Opera is passing through even though the value in the array at that point of time is null. var vitemp = document.getElementById('F06_'+ij).value; In firefox, i get the error below. [18:59:35.747] TypeError: document.getElementById(...) is null @ http:// How can i change the firefox parameters so as to be less strict for null value assignments ?

Todas as respostas (1)

more options

Use code like this to test if that id exists.

var vi_id = document.getElementById('F06_'+ij);
var vitemp = vi_id?vi_id.value:null;