doutong7216 2018-08-03 21:27
浏览 63
已采纳

在AJAX响应之后,翻转插件和javascript函数无法正常工作

I'm using Flip plugin to create a div for each row of a MySQL table and bring results via AJAX, on div front I show the name and show some information on the div back. This is my code:

index.html

<div class="result"></div>
<script src="https://code.jquery.com/jquery-1.12.0.min.js"></script>
<script src="https://cdn.rawgit.com/nnattawat/flip/master/dist/jquery.flip.min.js"></script>
<script>
   $.post("result.php",{

    }).done(function(resp){
      $(".result").html(resp);
    });

   $(".fff").flip({
      trigger: 'manual'
   });

   function flip_back(idx){
      $(".card_"+idx).flip(true);
   }

   function flip_front(idx){
     $(".card_"+idx).flip(false);
   } 
</script>

result.php

<?php 
  $connect = mysqli_connect("localhost", "root", "mypass", "mydatabase");

  $sql = "SELECT * FROM users";
  $res = mysqli_query($connect,$sql);

  $html='';

  if(mysqli_num_rows($res)>0){
     while($row=mysqli_fetch_array($res,MYSQLI_ASSOC)){
        $id= $row['id'];

         $html.='<div class="card_'.$id.' fff"> 
            <div class="front">'.$row['name'].'
             <button onclick="flip_back(\''.$id.'\');">MORE INFO</button>            
            </div> 
            <div class="back">'.$row['email'].'Back content
            <button onclick="flip_front(\''.$id.'\');">RETURN</button>
            </div></div>';
      }

   echo $html;
  }

?>

The problem is Flip plugin and onclick javascript functions are not working, I also tried using this method:

$.post("result.php",{

    }).done(function(resp){
        $(".result").html(resp);
   });  

    $(document).on("load",function(){
        $(".fff").flip({
            trigger: 'manual'
        }); 

        function flip_back(idx){
         $(".card_"+idx).flip(true);
       }

       function flip_front(idx){
        $(".card_"+idx).flip(false);
       } 
    });

Or this:

$(document).on("load",function(){
   $.post("test2.php",{

    }).done(function(resp){
         $(".result").html(resp);
    });
 });


 $(".fff").flip({
      trigger: 'manual'
 }); 

 function flip_back(idx){
    $(".card_"+idx).flip(true);
  }

  function flip_front(idx){
    $(".card_"+idx).flip(false);
  } 

I also checked this question, and I tried this :

$(".fff").flip({
      trigger: 'manual',
      onBefore: function(){
            console.log('before starting the animation');

            $.post("result.php",{

            }).done(function(resp){
                  $(".result").html(resp);
            });

      }
}); 

function flip_back(idx){
    $(".card_"+idx).flip(true);
}

function flip_front(idx){
    $(".card_"+idx).flip(false);
} 

But it's still not working. How can I solve it?

I'd like your help.

  • 写回答

1条回答 默认 最新

  • dqm83011 2018-08-03 22:31
    关注

    Finally it works putting flip function in AJAX response:

    $.post("result.php",{
    
    }).done(function(resp){
      $(".result").html(resp);
      $(".fff").flip({
        trigger: 'manual'
      });
    });
    
    function flip_back(idx){
      $(".card_"+idx).flip(true);
    }
    
    function flip_front(idx){
      $(".card_"+idx).flip(false);
    } 
    

    If you have another alternative It would be great.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 android报错 brut.common.BrutException: could not exec (exit code = 1)
  • ¥15 nginx反向代理获取ip,java获取真实ip
  • ¥15 eda:门禁系统设计
  • ¥50 如何使用js去调用vscode-js-debugger的方法去调试网页
  • ¥15 376.1电表主站通信协议下发指令全被否认问题
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥15 复杂网络,变滞后传递熵,FDA
  • ¥20 csv格式数据集预处理及模型选择
  • ¥15 部分网页页面无法显示!
  • ¥15 怎样解决power bi 中设置管理聚合,详细信息表和详细信息列显示灰色,而不能选择相应的内容呢?