如何在使用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
答案 0 :(得分:1)
只需使用load()
请求发送数据即可。如果没有更多信息,对另一个网址提出另一个请求似乎没有意义
$('#thetag').load(page.php, {data: "hi world"}}