我想得到一个帖子请求的回复,并填写另一页我已经得到但我没有工作。
我感谢任何帮助或提示,以便更好地思考这个问题。
<script type="text/javascript">
$('img').click(function () {
alert(this.id);
var id = this.id;
$.get('testpost.php', null, function (text) {
$.post('testcurlserver.php', {'id': id}, function (data) {
$(text).find(#containerr).html(data);
});
});
});
这是testpost.php
<html>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<body>
<script type="text/javascript">
$.post('testcurlserver.php', {'id': id}, function (data) {
$('#content').html(data);
});
</script>
<div id="containerr" style ="border: 1px solid red;">
</div>
</body>
</html>