超链接上的onclick事件过早地执行

时间:2014-04-03 20:10:31

标签: javascript php html

我希望能够从购物车中选择最喜欢的产品。 这是我的代码(来自IBKCart修改):

<?php
    function ShowCartWtPrd(){
        global $fav_id;
        $itemClass = ($this->getCartItems() > 2) ? "insideContMainArea2": "insideContMainArea";
        $plural = ($this->getCartItems() > 1)? 's': '' ;


        if (isset($_SESSION['favourites']) && !$_SESSION['favourites'] == "False") {

            $this->updFavourites();
            unset($_SESSION['favourites']);
        }                        

        $Out = 
        '<div id="theOverlay">&nbsp; 
          <table width="100%" border="0" cellspacing="0" cellpadding="2">
            <tr>
              <td width="20%"><div align="right"><img name="" src="./imgs/wait.gif" width="32" height="32" alt="" /></div></td>
              <td width="50%"><div align="left">&nbsp;<strong>Updating...Please Wait</strong> </div></td>
            </tr>
          </table>
        </div>
        <div id="Cart_Container">
            <div id="Car_top_bg"></div>
          <div id="Cart_middle">
                 <div id="'. $itemClass. '">
                   <table width="100%" border="0" cellspacing="2" cellpadding="2">
                     <tr bgcolor="#E6EDD2">
                       <td width="55%" height="21" bgcolor="#E6EDD2"><div align="center"><strong>Item Description </strong>
                       </div>
                       </td>
                       <td width="11%"><div align="center"><strong>Qty</strong></div></td>
                       <td width="11%"><div align="center"><strong>Prc/Qty</strong></div></td>
                       <td width="11%"><div align="center"><strong>Fav</strong></div></td>
                       <td width="11%"><div align="center"><strong>Del</strong></div></td>
                     </tr>' ;
                     $cnt=1;
                     foreach($this->cart as $itemId=>$Qty){
                        ++$cnt;
                        $ans = fmod($cnt,2);
                        if($ans == 0){$bg = '#ECF9FF';}else{$bg='';};
                        $ProdDts = $this->getProdDts($itemId);

                        $this->totAmt += $ProdDts[$this->prodPrc] * $Qty ;
                        $fav_id = $ProdDts[$this->prod_id];

                            $Out .= '<tr bgcolor="'. $bg .'">
                            <td valign="top">
                                <table width="100%" border="0" cellspacing="1" cellpadding="0">
                                 <tr>
                                    <td width="60%" valign="top">
                                        ' . $ProdDts[$this->prodNm]  .' 
                                        <br />                   
                                    </td>
                                 </tr>
                                </table>
                               </td>
                               <td valign="top"><div align="center">' . $Qty .'</div></td>
                               <td valign="top">' . $ProdDts[$this->prodPrc]  .'</td>
                               <td valign="top">
                                    <div align="center">
                                        <a href="#?favourites=true">
                                            <img src="./imgs/fav_trnsp_icon.png" 
                                                alt="Add to favourites" width="16" height="16" border="0" 
                                                title="Add to favourites" name="favourites"
                                                onclick="document.write('. $this->updFavourites() .');"
                                            />                                                                         
                                        </a>
                                    </div>
                                </td>
                               <td valign="top">
                                    <div align="center">
                                        <a href="#" 
                                            onclick="doCart(\'DelItem\', \'' . $ProdDts[$this->prodId] . '\', 0, \' \', \'Small\');">
                                            <img src="./imgs/cart_remove.png" alt="Delete Item" width="16" height="16" border="0" title="Delete Item"/></a>
                                    </div>
                                                               </td>
                             </tr>
                             <tr>
                       <td colspan="4" valign="top"><div class="clear"></div></td>
                     </tr>';
                     }

                    $Out .= '
                   </table> 
                 </div>
          </div>
            <div id="Cart_gtotal">
                <div class="theCont">Grand Total => '. $this->ShowCurSymbol() .' '. $this->toMoney($this->totAmt) . '</div>
            </div>
        </div>' ;   

        echo $Out;
    }
            function updFavourites() {
                global $username;
                global $password;
                global $database;
                global $fav_id;
                $conn = mysqli_connect("localhost",$username,$password, $database);
                // Check connection
                if (mysqli_connect_errno($conn))
                  {
                  echo "Failed to connect to MySQL: " . mysqli_connect_error();
                  }
                // mysql_connect("localhost","$username","$password") or die("Error: ".mysqlerror());
                // mysql_select_db("$database");
                if (isset($_SESSION['fav_id'])) {
                    $fav_id = $_SESSION['fav_id'];
                }
                $dealer_id  = $_SESSION['dealer_id'];
                $ProdDts = $this->getProdDts($fav_id);

                $part_id        = $ProdDts[$this->prod_id];
                $sql = "INSERT INTO favourites VALUES (0,'$dealer_id','$part_id')";
                $result = $conn->query($sql) or exit("Error code ({$conn->errno}): {$conn->error}");

                /* close up */
                //$conn->close();
            }
 ?>

            }

如果我使用调试器逐步执行代码,我会到达行

$Out .= '<tr bgcolor="'. $bg .'">

并直接进入updFavourites()函数,我希望在"favourites"函数末尾附近的onclick事件ShowCartWtPrd上执行此操作。我一直试图调试这个,但看不出是什么导致它。也许有人有个主意。

1 个答案:

答案 0 :(得分:1)

您在混淆服务器端和客户端事件。您正在使用的onclick事件是一个javascript(客户端)事件,将在用户单击该元素时执行,但由于您从PHP(服务器端)输出字符串$ Out并且您正在连接在字符串常量和updFavourites函数中,PHP执行服务器端代码,然后提供客户端代码,即评估 PHP函数。