开发者

File Upload input control's onchange event bug in CHROME

开发者 https://www.devze.com 2023-01-19 10:09 出处:网络
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 firi

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

0

精彩评论

暂无评论...
验证码 换一张
取 消