0

我正在尝试制作一个可以在移动设备上运行的 php 文档。我们有一些 javascript 在应用程序顶部显示导航按钮。我的 php 文档应该显示在按钮的正下方。它应该是一个相当简单的页面,但我挣扎得很厉害。我试图简单地调用一个设置变量的函数。我想使用这个变量来显示使用该应用程序的人拥有的金额。我遇到了函数和变量的问题。我被告知 html 不能使用变量或函数,所以我需要闯入 php 并使用 "echo functionName(); 所以:声明函数,调用函数来设置变量,在 div 内的页面上显示变量。任何帮助将不胜感激。这是我的代码。:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<?php

?>
<html>
<head>

    <script type="text/javascript">
    //int $availableBal;
    //int $currentHoldings;
    function int getBalance();
    {

        int $availableBal = 500;
        //alert("you have " + $availableBal + " dollars to spend");
        return $availableBal;
    }

    function void getHoldings()
    {
        int $MSFT_Shares = 5;
        int $MFST_Price= 100;
        int $currentHoldings = $MSFT_Shares * $MSFT_Price;
        return $currentHoldings;
    }
    </script>   
    <style>
html {text-align:center}
</style>
</head>
<body>
    <div id="totalMoney" align="center" style= "border:1px solid grey">         
            You have a current balance of: $ <?php 'echo getBalance();' ?> 
            <br>
            <!--The total worth of your current stocks is: $ <script type="text/javascript"> document.write(getHoldings();)</script> -->
    </div>
</body>
</html>
4

3 回答 3

1

您将两种语言混合在一起。Javascript 是客户端应用程序,而 PHP 是服务器端应用程序。

所有这一切都可以通过两者来实现,我已经模拟了一个在 javascript 中为您工作的模型,并带有一些 jquery 用于显示。 http://jsfiddle.net/Nj3ce/

<!DOCTYPE >
<html>
<head>
    <script text="text/javascript" src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){
           //on document load this function will be fired
           //automatically runs getHoldings();
           var holdings = getHoldings();
            $('#totalMoney span').text(holdings);
        });

        function getBalance(){
            var availableBal = 500;
            return availableBal;
        }

        function getHoldings(){
            var MFST_Shares = 5;
            var MFST_Price = 100;
            var currentHoldings = MFST_Shares * MFST_Price;
            return currentHoldings;
        }​
    </script>
    <style type="text/css">
        html {text-align:center}​
    </style>
</head>
<body>
    <div id="totalMoney" align="center" style= "border:1px solid grey">         
            You have a current balance of: $<span></span>
            <br>
    </div>
</body>
</html>​
于 2012-11-20T00:14:23.930 回答
0

您不在 javascript 中声明数据类型。(即function intint $availableBal)。这一切都可以在 PHP 中完成。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<?php
    // Should really put this in an external file
    function getBalance()
    {
        $iAvailableBal = 500;
        return $iAvailableBal;
    }

    function getHoldings()
    {
        $iMSFTShares = 5;
        $iMSFTPrice = 100;
        $iCurrentHoldings = $iMSFTShares * $iMSFTPrice;
        return $iCurrentHoldings;
    }
?>
<style type="text/css">
/* Should really put this in an external file */
html {text-align:center}
</style>
</head>
<body>
    <div id="totalMoney" align="center" style= "border:1px solid grey">         
            You have a current balance of: $ <?php echo getBalance(); ?> 
    </div>
</body>
</html>
于 2012-11-20T00:22:31.297 回答
0

在这种情况下,您应该尝试在每种语言中单独声明函数。所有你想做的事情都可以只用 php 来完成。为了清洁起见,请在 php.ini<!DOCTYPE>上方移动。另外,包含一个包含所有代码的单独文件,并让 html 使用更少的 css/javascript/php

于 2012-11-20T00:03:03.483 回答