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てみました。ただし、機能していません。助けてください。
OnDialogOpen
uploadifyはわかりませんが、基本的には次のように機能するはずです。
あなたのjQuery:
$("#fileInput").click(function() { alert("alert!"); });
ファイル入力:
<input type="file" id="fileInput" />