我在我的ASP.NET MVC應用程序中的HTML登錄表單,看起來像這樣:如何在用戶單擊表單提交後顯示加載消息?
<form action="/Account/Login" class="form" method="post">
<input name="UserName" size="25" type="text" value="">
<input name="Password" size="25" type="password">
<button type="submit" class="glossy">Login</button>
</form>
<div class="loading-mask" id="authenticating">
<span>Authenticating ...</span>
</div>
當用戶點擊提交存在/帳號/登錄動作處理之前的延遲,並返回之前部分表單顯示錯誤或在將用戶帶到新頁面之前。
是否有一種方法可以使窗體第一次出現時隱藏加載區,然後在單擊「提交」按鈕後變爲可見。請注意,我不需要再次隱藏它,因爲提交之後的任何操作都會導致頁面重新加載。
注意我正在尋找一些不使用jQuery的方式。
你使用jQuery或只是普通的JavaScript? –
對不起,我的回覆很慢。沒有我的網頁不使用jQuery?我會更新這個問題來提一提。 –
你有沒有嘗試過?你學過JavaScript嗎?我們不會只爲你寫...... – Sir