Checkbox javascript IE dosya yükleme elemanı boş yapmazlar onclick

0 Cevap php

I have a checkbox and a file upload element, they both are dependent on each other such that if on is on that other has to be off(empty in case of file upload field) for this i have used the javascript on onclick of checkbox and onchange of file upload..

Onchange olay için onay kutusunu tüm tarayıcılarda seçilmemiş olur

ama dosya yükleme öğesini kullanarak herhangi bir dosyayı seçin ve sonra ben daha sonra dosya yükleme eleman IE boş alır, ama FF çalışıyor gelmez onay kutusuna tıklayın sonra

aşağıdaki gibi onay kutusunu onClick kullanılan javascript:

function yousend_it()
{
  if(document.getElementById('yousendit').checked)
  {

   document.getElementById('bgimage').value = "";
   window.open('https://www.yousendit.com/dropbox?dropbox=mydomain','_blank');
   //return false;
  }
  return true;
}

Birisi nasıl i mükemmel tüm tarayıcı iş yapabilirim bana söyleyebilir misiniz?

0 Cevap