Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 jQuery 和 ASP.NET 使用Uploadify Flash 版本控制。一切正常。我的问题是,当用户单击选择文件按钮时,我需要在打开该对话框以选择要上传的文件之前显示警报。我正在使用 Uploadify JS v1.6.2。我也试过OnDialogOpen和 onOpen。但是它不起作用。请帮忙。
OnDialogOpen
我不知道uploadify,但基本上它应该像这样工作:
你的jQuery:
$("#fileInput").click(function() { alert("alert!"); });
你的文件输入:
<input type="file" id="fileInput" />