CHROME 中文件上传输入控件的 onchange 事件错误

发布于 2024-09-26 23:47:22 字数 412 浏览 5 评论 0原文

我的文件上传控件的“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

疾风者 2024-10-03 23:47:22

这似乎是与对话框中字符数量相关的错误: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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文