如何在使用jQuery加載頁面後發送數據?如何在jQuery中加載頁面後發送數據
例如
$("#target").click(function() {
$('#thetag').load(page.php, function(){
$.ajax({
type: "POST",
url: "page.php",
data: {data: "hi world"},
success: function(result) {
console.log('good');
}
});
});
});
</div id="thetag">
page.php
<?php echo $_POST['data'] ?> ==== 'hi world'
</div>
我需要加載點擊後page.php
文件上#target
,並在同一時間,通過AJAX郵寄的數據;顯示#thetag
你會得到什麼結果?你在打開的div標籤中看起來像一個錯誤的'/'。該div內的代碼是否標記page.php上的內容?如果是這樣的話,你應該在div中看到'hi world ===='hi world''。 –
當前結果是什麼?任何錯誤,空白的迴應? – RomanPerekhrest