File Upload input control's onchange event bug in CHROME
I am having fileupload control having its "multiple" attribute equals to "multiple". I am facing a weird issue in CHROME browser. The isse is that onchange event of file upload control is not firing for more than 12 files selected at once. The event is firing if I have 10 files selected at once. On FF and Safari it is working fine. Here is the code:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
</head>
<body>
<input type="file" multiple="multiple" 开发者_高级运维onchange="alert('');" />
</body>
</html>
It seems it's a bug related to the number of caracters in the dialog box : http://code.google.com/p/chromium/issues/detail?id=44068
精彩评论