SORU
11 Mart 2010, PERŞEMBE


javascript null olmadığını kontrol edin

Aşağıda şeklinde bir değer almak nerede bir kod parçacığını. Daha fazla değeri olmadığını kontrol işlemeden önce boş değil..

var val = document.FileList.hiddenInfo.value;
alert("val is "   val);  // this prints null which is as expected
if (val != null)
{
   alert("value is " val.length); // this returns 4
}
else
{
   alert("value* is null");
}

..? Bu neden olur bir fikriniz var mı?

CEVAP
11 Mart 2010, PERŞEMBE


bu sizin işinizi görecektir

if (!!val) {
    alert("this is not null")
} else {
    alert("this is null")
}

Bunu Paylaş:
  • Google+
  • E-Posta
Etiketler:

YORUMLAR

SPONSOR VİDEO

Rastgele Yazarlar

  • BDGcustoms

    BDGcustoms

    24 NİSAN 2011
  • michaeljacksonVEVO

    michaeljacks

    2 EYLÜL 2009
  • TeeMayneTV

    TeeMayneTV

    27 Kasım 2010