1

我有一个 javaScript 函数,它产生一个值并将其输入到 span 元素中。我现在想使用 PHP 将此值(以及用户输入的其他值)输入到我的数据库中,但是我似乎无法从跨度中提取值。我想知道是否有人能告诉我我哪里出错了或者我将如何解决这个问题?谢谢

javascript函数:

    function updateTotalDistance() {
   var total = 0;
   $(".distance").each(function(){
       if(!isNaN(this.value) && this.value.length != 0) {
           total += Math.round(parseFloat(this.value));
       }
   });
   $("#totalDistance").text(total);
};

跨度元素:

<strong>Total Distance</strong><span id="totalDistance"</span>

我的表格:

<script type="text/javascript">
function SubmitAll(params) {
    var form = [ '<form method="POST" action="createclaim_process.php">' ];

    form.push('<input type="hidden" name="manager" value="<? echo $manager; ?>', document.getElementById("manager").value, '"/>');
    form.push('<input type="hidden" name="totalDistance" value="<? echo $totalDistance; ?>', document.getElementById("totalDistance").value, '"/>'); form.push('</form>');
    jQuery(form.join('')).appendTo('body')[0].submit();
}

4

2 回答 2

0

试试这个:

<strong>Total Distance</strong><span id="totalDistance"></span>

你错过了>你的<span>

于 2012-04-18T22:48:13.163 回答
0

尝试$('#totalDistance').text()代替document.getElementById("totalDistance").value

于 2012-04-18T23:09:28.327 回答