隐藏字段值未出现在查询字符串中

时间:2012-05-31 20:41:00

标签: php javascript json hidden-field

我有一个javascript方法正在进行一些计算。最后,我想将它存储在隐藏的字段中。这是方法:

<script>
function getQuantity(){
 var count = document.getElementById('hidden').value;
 var Quantity=new Array();
 var i=0;
 for(i=0; i<count; i++)
 {
    Quantity[i]=document.getElementById(i).value;
 }
var myJSONQuantity = JSON.stringify(Quantity,'');
alert(myJSONQuantity);

document.qForm.getElementById('hdnQuantityArray').value = myJSONQuantity;
alert(document.qForm.getElementById('hdnQuantityArray').value);
}
</script>

我在这里查了一下,一切正常。最后一个警报是打印正确的值。 这是一个表单,其中有一个按钮,我想通过方法GET提交字段:

<form  name="qForm" method="GET" action="CalculateTotal.php">
    <input type="hidden" id="hdnQuantityArray" name="hdnQuantityArray">
    <input type="submit" value="CheckOut" id="CheckOut" name="CheckOut">
</form>

我的查询字符串显示:

http://localhost/blazorange/Customer/CalculateTotal.php?hdnQuantityArray=&CheckOut=Submit

我希望hdnQuantityArray在查询字符串中有一些值。

P.S。这个javascript方法是从同一文件中的另一个表单的提交按钮调用的。这个表单是一个PHP表单。 以下是其他表单提交按钮的代码:

<input type="submit" value=" Total " id="total" onClick="return getQuantity()">

修改

<table border=1>
    <form id="CartForm">    
        <tr>
            <td>
                <h2> <font color='Grey'>Item Name</font> </h2>
            </td>
            <td>
                        <h2> <font color='Grey'>Item Price</font> </h2>
            </td>
            <td>
                    <h2> <font color='Grey'>Quantity</font> </h2>
            </td>
        </tr>
    <?PHP

        /*     Displaying the total and purchased cart's items    */

            $j=0;
            $temp=new Item();
            while(isset($ItemsArray[$j])) {
        ?>
        <tr>
                        <?PHP

                    if (is_string($ItemsArray[$j])) {
                $temp=unserialize($ItemsArray[$j]);
                 }

                $ItemName=$temp->getItemName();
                $Price=$temp->getPrice();
            ?>

            <td>
                <font color='Black'><?PHP echo $ItemName; ?>
            </td>

            <td>
                <font color='Black'><?PHP echo $Price;  ?></font>
            </td>

            <td>
                <input type="text" id="<?PHP echo $j;?>"/> 
            </td>
            </tr>


        <?PHP $j++; }?>


        <table>
            <input type="button" value=" Total " id="total" onClick="getQuantity()">
            <input type="hidden" value="<?PHP echo $j; ?>" id="hidden">

        </form>
    </table>

2 个答案:

答案 0 :(得分:4)

document.getElementById('hidden')

应该是

document.getElementById('hdnQuantityArray')

您发布的代码中没有ID为“hidden”的元素。

编辑:

你说JS只在提交CartForm时运行?那会重新加载页面,对吧?页面重新加载时,hdnQuantityArray为空。所以当你提交qForm时,那里什么都没有,因为页面加载了一个空白字段,而JS没有再次运行。听起来不错吗?

答案 1 :(得分:0)

你不应该这样做:

document.getElementById('hdnQuantityArray').value = myJSONQuantity;
alert(document.getElementById('hdnQuantityArray').value);

我在document.getElementById调用中删除了不必要的“qform”。