我有一個包含文件上傳按鈕的網絡表單。asp.net jquery newbie問題
當我點擊按鈕上傳文件時,後面的C#代碼包含事件處理程序中的一些代碼,我想在jQuery執行之前執行第一個。
<script>
$(document.ready() {
$('.uploadButton').click(function() {
// do some additional processing *AFTER* code behind stuff executes
});
}
</script>
// In my ASP.NET C# code behind
protected void uploadButton_Click(object sender, EventArgs e)
{
// Code to fire off here *FIRST* before jquery executes
}
是這樣的可能嗎?我知道我可以在我的javascript中實現一個jQuery文章,但由於我已經佈置了大部分代碼(並且正在對客戶端請求進行更改),所以我只是想知道是否可以這樣做。