我有兩個文件與PHP和HTML。這是我的A.php文件中的基本信息阿賈克斯,只是發送價值不顯示頁
<div class="col-md-8">
<input type="email" class="form-control" placeholder="Ingresar Número de Nota" id="idnote" name="idnote">
</div>
<button type="button" class="btn btn-primary" id="notes">Enviar</button>
當用戶點擊按鈕時,它調用js中的函數。
$(document).ready(function() {
var formData = {
'id' : $('input[name=idnote]').val()
};
$.ajax({
type : 'POST',
url : '../consults/findnote.php',
data : formData,
dataType : 'json',
encode : true
})
.done(function(data) {
//Going to findnote.php and keeping formData
//This findnote.php contains a completely different design but I need the first value to make some changes for the user.
})
});
});
的問題是,阿賈克斯後,我的網頁是不會findnote.php剛剛發送的值,我需要證明findnote.php 我知道如果我使用
event.preventDefault();
Ajax將阻止重新加載,但我沒有使用它。
有辦法做到這一點嗎? 如何在創建window.location後保留值? (因爲如果我在調用成功的電話後調用文件,我將失去該值) 我應該只用PHP進行嘗試嗎? (它的一個選項)