所以,我似乎有我的代碼的一些問題。現在我剛開始學習AJAX和jQuery,所以我對它很感興趣。他們的方式在現場的工作原理是:我的AJAX腳本將正常運行一次,但它不會再次運行
當用戶點擊登錄按鈕形式將他們輸入用戶名和密碼的按鈕下出現。當用戶點擊登錄我的AJAX腳本將會處理記錄他們,並刷新自己的形象,讓他們知道他們正在登錄。然後,當他們要註銷他們點擊註銷和它記錄出來沒問題。
我遇到的問題是,一旦我通過登錄/註銷過程中,我無法得到的形式而無需刷新頁面再次顯示了運行。
我希望我是有道理= /這裏是我的代碼有:
<script src="http://code.jquery.com/jquery-1.10.2.min.js" type="text/jscript"></script>
<script>
$(function() {
$('form').on('submit', function (e) {
$.ajax({
type: 'post',
url: 'loginsystem/login.php',
data: $('form').serialize(),
success: function() {
$("#loginForm").slideUp('slow');
$("#playerFace").load('ajaxPHPScripts/getUserAvatar-100px.php');
$("#loginLogout").load('ajaxPHPScripts/loginLogoutButton.php');
}
});
e.preventDefault();
});
});
function doSomething() {
$.ajax({
type: 'get',
url: 'loginsystem/logout.php',
success: function() {
$("#playerFace").load('ajaxPHPScripts/getUserAvatar-100px.php');
$("#loginLogout").load('ajaxPHPScripts/loginLogoutButton.php');
}
});
}
$(document).ready(function(){
$("#loginForm").hide();
$("#loginbtn").click(function(){
$("#loginForm").slideToggle('slow');
});
});
$(document).ready(function() {
$("#removeLoginForm").click(function(){
$("#loginForm").slideUp('slow');
});
});
</script>
現在的HTML:
<div id="sidebar">
<div id="sidebarinner">
<div id="sidebarInnerInner">
<div id="playerAvatar">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td style="width:100px;" id="playerFace"><img src="https://minotar.net/avatar/steve/100"></td>
<td style="text-align:center;"><?php ServerPing(); //pings to see if server is online?></td>
</tr>
</table>
</div>
<div id="joinAndLog">
<table width="100%" border="0" cellspacing="0" cellpadding="0" style="text-align:center; height:100%;">
<tr>
<td style="width:50%;" id="loginLogout"><?php LoginOrLogout(); ?></td>
<td style="width:50%;"><?php SignupOrManageAcc(); ?></td>
</tr>
</table>
</div>
<div id="loginForm">
<form class="sideForm" id="testform" style="text-align:center; margin-bottom:10px;">
<input type="text" id="name" name="username" value="" placeholder="Username..."/>
<br />
<input type="password" id="pass" name="password" value="" placeholder="Password..."/>
<br />
<input id="submit" type="submit" name="submit" value="Login" style="width:25%; cursor:pointer;" />
<input type="reset" name="" value="Cancle" id="removeLoginForm" style="width:25%; cursor:pointer;" />
<br />
<!--a href="#" style="padding:0px; margin:0px;">Forgot Password</a-->
</form>
</div>
</div>
將這個只能拿到形式,一旦它再次打亂了之前的工作?或者它會保持表單的工作?我也會給它一個嘗試,但標識只是想聽聽你有什麼要說=) –
這應該是你的成功的功能裏面,這樣一種新的形式是,它必將載入每次。你可能想要在其他地方定義這個函數btw ...我將編輯我的答案,詳細說明我的意思。 –
Ohhhh這很有道理!非常感謝你!所以基本上它會是一個循環?只是不使用任何時間,爲或做 –