在comment.create事件上执行没有页面重定向的操作

时间:2011-08-07 04:34:34

标签: php ajax

我正在使用Facebook评论我想将页面网址发送到我的数据库或事件上的txt文件,而不会删除页面。我需要帮助..我试过很多..plz

网页网址代码 -

<?php
 $protocol = strpos(strtolower($_SERVER['SERVER_PROTOCOL']),'https') 

                      === FALSE ? 'http' : 'https';


    $host     = $_SERVER['HTTP_HOST'];

      $script   = $_SERVER['SCRIPT_NAME'];

      $params   = $_SERVER['QUERY_STRING'];

      $currentUrl = $protocol . '://' . $host . $script . '?' . $params;


?>

我的活动创建代码。

<script>
            $("document").ready(function(){
                //catch like event
                FB.Event.subscribe('comment.create', function(href) {
< Code for sending page url to database or txt sholud be here >
                });
                //catch unlike event
                FB.Event.subscribe('comment.remove', function(href) {
                    alert('You just unliked '+href);
                });
            });
        </script>

1 个答案:

答案 0 :(得分:0)

你可以使用xmlhttprequest, 请参阅以下链接

http://en.wikipedia.org/wiki/XMLHttpRequest

http://api.jquery.com/jQuery.ajax/