0

我正在尝试确定用户是否单击了确认或拒绝链接。

如果确认...完成时:

idurl = '<?php echo $siteUrl ?>/profile.php?userid='+id+'';
if (idurl == window.location.href) {
     window.location = idurl;
}

否则,如果拒绝:

parent.slideUp(300,function() {});
$('.friend-count').load('<?php echo $siteUrl ?>/friendrequestscount.php').fadeIn("fast");

以下脚本在没有以下情况下运行良好:

complete: function() {
        if (this.className.match("confirm")){

我如何检查它的confirmfriend.php 是否已经完成?

<script>
   $('.friendaction').click(function() {
       var id = this.getAttribute('data-userid');
       var requestto = this.getAttribute('data-requestto'),
       parent = $(this).closest("li"),
           url = this.className.match("confirm") 
              ? "confirmfriend.php" 
              : "removefriend.php", 
           liReference = $(this).parent();
       $.ajax(url + "?userid=" + id, {
           complete: function() {
            if (this.className.match("confirm")){
                      idurl = '<?php echo $siteUrl ?>/profile.php?userid='+id+'';
                      if (idurl == window.location.href) {
                          window.location = idurl;
                      }
            } else {
                    parent.slideUp(300,function() {});
                    $('.friend-count').load('<?php echo $siteUrl ?>/friendrequestscount.php').fadeIn("fast");
            }
           }
       });
   });
</script>

提前感谢您的帮助。

4

1 回答 1

0
<script>
   $('.friendaction').click(function() {
       var id = this.getAttribute('data-userid');
       var requestto = this.getAttribute('data-requestto'),
       parent = $(this).closest("li"),
           url = this.className.match("confirm") 
              ? "confirmfriend.php" 
              : "removefriend.php", 
           liReference = $(this).parent();
       $.ajax(url + "?userid=" + id, {
           complete: function() {
            if (url == "confirmfriend.php"){
                      idurl = '<?php echo $siteUrl ?>/profile.php?userid='+id+'';
                      if (idurl == window.location.href) {
                          window.location = idurl;
                      }
            } else {
                    parent.slideUp(300,function() {});
                    $('.friend-count').load('<?php echo $siteUrl ?>/friendrequestscount.php').fadeIn("fast");
            }
           }
       });
   });
</script>
于 2012-11-29T13:53:39.957 回答