替代Jquery Ajax加载方法?

时间:2017-09-21 21:51:58

标签: php ajax

我正在尝试运行评论部分,并通过名为comment_frame.php的文件回复ajax。在这个文件里面是html表单来发送评论的回复,这就是我的问题 - 如果有人发送来自bla-bla.php,wof-wof.php或者重定向到comment_frame.php的回复..

我尝试使用$(' form')来解决这个问题.report(函数...但问题是因为表单只保存在comment_form.php而不是bla-bla.php中, wof-wof.php文件..

那么.. Jquery Ajax加载方法有替代方法吗?有没有其他方法可以解决这个问题?

谢谢!

$str .= "<div class='status_post' onClick='javascript:toggle$id()'>
                        <div class='post_profile_pic'>
                            <img src='$profile_pic' width='50'>
                        </div>

                        <div class='posted_by' style='color:#ACACAC;'>
                            <a href='$added_by'> $first_name $last_name </a> $user_to &nbsp;&nbsp;&nbsp;&nbsp;$time_message
                            $delete_button
                        </div>
                        <div id='post_body'>
                            $body
                            <br>
                            $imageDiv
                            <br>
                            <br>
                        </div>

                        <div class='newsfeedPostOptions'>
                            Comments($comments_check_num)&nbsp;&nbsp;&nbsp;
                        </div>

                    </div>
                    <div class='post_comment' id='toggleComment$id' style='display:none;'>
                        <div id='show_comments$id'></div>
                    </div>
                    <hr>";
        }

        ?>

        <script>
             $(document).ready(function() {
                $('#show_comments<?php echo $id; ?>').load("comment_frame.php?post_id=<?php echo $id; ?>");
            });
        </script>

0 个答案:

没有答案