CHROME 中文件上传输入控件的 onchange 事件错误
我的文件上传控件的“multiple”属性等于“multiple”。我在 Chrome 浏览器中遇到一个奇怪的问题。问题是,一次选择的文件超过 12 个时,文件上传控件的 onchange 事件不会触发。如果我一次选择了 10 个文件,则会触发该事件。在 FF 和 Safari 上运行良好。这是代码:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
</head>
<body>
<input type="file" multiple="multiple" onchange="alert('');" />
</body>
</html>
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>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这似乎是与对话框中字符数量相关的错误:http ://code.google.com/p/chromium/issues/detail?id=44068
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