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
5 Answers
Reset to default 3You 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
版权声明:本文标题:javascript - onchange with alert not working in ie - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743776598a2537096.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论