admin管理员组

文章数量:1345582

javascript based tag ( type ='file' ) created

and add one attribute in that tag

that attribute name onchange, i will assign alert

But alert is not e when choice the new file in internet explore.

choicefile.setAttribute("onChange", "alert('test')");

javascript based tag ( type ='file' ) created

and add one attribute in that tag

that attribute name onchange, i will assign alert

But alert is not e when choice the new file in internet explore.

choicefile.setAttribute("onChange", "alert('test')");
Share Improve this question edited Dec 4, 2012 at 11:28 MaxArt 22.7k10 gold badges84 silver badges81 bronze badges asked Dec 4, 2012 at 11:25 sabarisabari 5021 gold badge8 silver badges18 bronze badges 2
  • Please give some code ,It not at all clear what you are trying to do? – ameya rote Commented Dec 4, 2012 at 11:27
  • Post your code. Easier to understand than words. :) – Akhil Sekharan Commented Dec 4, 2012 at 11:27
Add a ment  | 

5 Answers 5

Reset to default 3

You can do two ways,

1.. Using HTML, add onchange event inline

<input type="file" id="file_select" name="file_select" value="" onchange="alert('File selected')" />

Demo: http://jsfiddle/CS3xJ/1/

2.. Using JS,

  choicefile.onchange = function(){
     alert('File selected')
  }

Demo: http://jsfiddle/CS3xJ/2/

There is actually a difference between setAttribute and attachEvent. Here is an example using attachEvent (for IE) and addEventListener (standards) to add the event.

Also, not that the event handler is a function, rather than a string:

var eventHandler = function () {
    alert("Test");
}

if (choicefile.addEventListener) {
  choicefile.addEventListener('change', eventHandler , false);
} else if (choicefile.attachEvent)  {
  choicefile.attachEvent('onchange', eventHandler );
}

Try with this:

choicefile.onchange = function() {alert("test");};

Your code seems correct. Something particular with IE is, if you put higher security level, you need to allow scripts and activeX content when you load the website.

try onclick="javascript:alert('test');" instead of onchange. Old ie versions and patibility modes don't support onchange very well.

本文标签: javascriptonchange with alert not working in ieStack Overflow