$ .get请求中的$ .post请求

时间:2017-03-13 20:05:51

标签: javascript html ajax

我想得到一个帖子请求的回复,并填写另一页我已经得到但我没有工作。

我感谢任何帮助或提示,以便更好地思考这个问题。

<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>

0 个答案:

没有答案