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 に変更するにはどうすればよいですか。c#
btnUpload.OnClientClick = "javascript:showFileUploader('ctl00_contentMain_pnlUploadCntrlContainer'); return false;";
$('#<%= btnUpload.ClientID %>').click(function(){ showFileUploader('#<%= pnlUploadCntrlContainer.ClientID %>'); return false; });