使用Ajax调用PHP代码

时间:2014-05-20 06:54:25

标签: javascript php jquery ajax cakephp

请注意以下代码

   <?php
//echo $this->Html->css(array('bootstrap', 'mark', 'style'));
echo $this->Html->script(array('timer','swfobject','bootstrap.min.js'));
//$this->requestAction('/flip2/correctAnswer')


?>
<style>
#hideall {
    display: none;
    opacity: 0.7;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #000;
    border: 1px solid #cecece;
    z-index: 1;
    vertical-align:middle;
    text-align:center;
}

.removeCardflip{
    transition: rotateY(0deg);
    -webkit-transition: rotateY(0deg);
    transition-duration: 0s;    
}




/*  SECTIONS  */
.section {
    clear: both;
    padding: 0 10px 0 10px;
    margin: 0px;
}


</style>


<div id="hideall">
    <?php //echo $this->Html->image('progress.gif', array('alt' => 'Wait', 'style' => 'text-align:center; padding-top:200px;'));?>
</div>

<!--<div class="wrapper" style="border: 1px solid red; width: 100%;">-->
    <div class="section group" style="margin-top: 50px;">
        <div class="col span_3_of_3">
            <h3 style="margin:0px; font-size:22px;">Play word game: </h3>
        </div>
    </div>


    <div class="">
        <div>
            <div>
                <span class="remainWords"><?php //echo count($words);?></span> oxxxxxxxxxxxxxxxf <?php //echo $totalWords;?>
            </div>

            <div>
                <?php
                echo $this->Html->image("comic_edit.png",
                                        array(
                                            "alt" => "Pareto List",
                                            "id" => "paretoList",
                                            'url' => "javascript:;"
                                        )
                                    );
                ?>
            </div>
        </div>
    </div>




    <div class="container"><div class="row">






<?php



    foreach($worddeck as $worcard)
    {
    ?>
        <div class="xy col-lg-3 col-md-4 col-sm-6 img-rounded" id="card1" style="width:250px; height:200px; background-color:grey; heiht:170px; margin: 10px 10px;">
            <div id="enside1" >
                <h1 data-pos="<?php //echo ; ?>" ><?php echo $worcard['unique_wordsforcards']['en_word']; $enSpell = $worcard['unique_wordsforcards']['en_word']; ?></h1>       
            </div>

            <div id="ptside1" style="display:none;">

            <?php echo $phonemer[$enSpell]; ?>
                <p><?php echo $worcard['unique_wordsforcards']['hint']; ?></p>
            </div>
            <div id="cntrol1">
                <button type="button" id="acertei" class="a btn btn-success mr5 btn-lg">Acertei</button>
                <button type="button" id="Errei" class="e btn btn-danger mr5 btn-lg">Errei</button>
            </div>
        </div>
    <?php
    }
?>





    </div></div>


    <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
    <!-- Include all compiled plugins (below), or include individual files as needed -->
<script type="text/javascript">
$(document).ready(function(){


   $( ".btn-danger" ).click(function(){
        console.log("Red Button");
        var toclose = $(this).parent().parent();
        $.ajax({
          url: "../img/media.jpg",
        }).done(function() {
            console.log( "The act has been done");
            toclose.toggle();
          });
   }); 


   $( ".btn-success" ).click(function(){
        console.log("Red Button");
        var toclose = $(this).parent().parent();
        $.ajax({
          url: "../img/media.jpg",
        }).done(function() {
            console.log( "The act has been done");
            toclose.toggle();
          });
   }); 

  $( ".xy" ).click(function(){

    $(this).find("#enside1").toggle();
    $(this).find("#ptside1").toggle();
    console.log(this);
  });

  $("#acertei").on("click", function() {
    $.ajax({
        url: "/flip2/correctAnswer",
        success: function(data) {
            // Do whatever you need to do with the response here.
        },
    });
});

});


</script>

这是View页面的CakePHP$this->requestAction('/flip2/correctAnswer')会在correctAnswer()中调用Controller方法。

这里如果我在页面加载时调用$this->requestAction('/flip2/correctAnswer'),这可以正常工作。我需要在点击Acertei按钮时调用此方法,因此我按照SO用户的建议将其添加到Ajax。但是,它没有工作,函数不会被调用。这是为什么?

1 个答案:

答案 0 :(得分:1)

我建议首先给你的Acertei按钮一个唯一的ID,例如“acertei”(它目前与它的兄弟按钮共享ID为“2”)。然后使用jQuery,您可以执行以下操作:

$("#acertei").on("click", function() {
    $.ajax({
        url: "/flip2/correctAnswer",
        success: function(data) {
            // Do whatever you need to do with the response here.
        },
    });
});

这会向Acertei按钮添加一个click事件,该按钮将启动对'flip2 / correctAnswer'URL的AJAX请求。