フォームが送信されたら、単に読み込みGIFを表示しようとしています。ロードgifが表示されるため、私のコードは正しく機能していません。 gifの私の画像がvisibility: hidden
に設定されているのがわかります。
<script src="js/jquery-1.11.1.min.js"></script>
<div class="" style="width: 480px; margin: 0 auto; margin-top: 20px;" id="form_wrapper">
<img src="img/loader.gif" id="gif" style="display: block; margin: 0 auto; width: 100px; visibility: hidden;">
<div class="fade" id="form">
<form action="process_login.php" method="POST" name="simplelogin" id="login_form"><br />
<label for="username"> Username:</label>
<input type="username" name="username" id="username" size="30" required><br><br>
<label for="password"> Password:</label>
<input type="password" name="password" id="password" size="30" required><br><br>
<input class="load_button" type="submit" name="submit" id="submit" value="Submit" placeholder="Submit">
</form>
</div>
</div>
<div class="fifty"></div>
<script type="text/javascript">
$('.load_button').submit(function() {
$('#gif').show();
return true;
});
</script>
show()
メソッドは、display
CSS設定にのみ影響します。可視性を設定する場合は、直接行う必要があります。また、.load_button
要素はボタンであり、submit
イベントを発生させません。これを機能させるには、セレクターをform
に変更する必要があります。
$('#login_form').submit(function() {
$('#gif').css('visibility', 'visible');
});
return true;
はロジック内で冗長であるため、削除できます。
ボタン入力には送信イベントがありません。代わりに、イベントハンドラーをフォームに添付してみてください。
<script type="text/javascript">
$('#login_form').submit(function() {
$('#gif').show();
return true;
});
</script>
JSのみを使用したより良いクリーンな例
ステップ1-Javaスクリプトを作成し、HTMLページに配置します。
<script type="text/javascript">
function ShowLoading(e) {
var div = document.createElement('div');
var img = document.createElement('img');
img.src = 'loading_bar.GIF';
div.innerHTML = "Loading...<br />";
div.style.cssText = 'position: fixed; top: 5%; left: 40%; z-index: 5000; width: 422px; text-align: center; background: #EDDBB0; border: 1px solid #000';
div.appendChild(img);
document.body.appendChild(div);
return true;
// These 2 lines cancel form submission, so only use if needed.
//window.event.cancelBubble = true;
//e.stopPropagation();
}
</script>
フォームで、イベント送信時にJavaスクリプト関数を呼び出します。
<form runat="server" onsubmit="ShowLoading()">
</form>
フォームを送信するとすぐに、読み込み中の画像が表示されます。
Onclick関数はどうですか:
<form id="form">
<input type="text" name="firstInput">
<button type="button" name="namebutton"
onClick="$('#gif').css('visibility', 'visible');
$('#form').submit();">
</form>
もちろん、これを関数に入れてからonClickでトリガーすることができます