过早执行超链接上的 onClick 事件


onclick event on hyperlink being performed prematurely

我希望能够从购物车中选择喜欢的产品。这是我的代码(它来自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()函数,我想在 onclick 事件上做"favourites" ShowCartWtPrd函数结束时。我一直在尝试调试它,但看不到是什么原因造成的。也许有人有一个想法。

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