无法使用jquery在td类中获取值

时间:2016-04-09 16:16:47

标签: php jquery

我是网络开发的新手,让我头疼的一件事是,我无法获得表格中其中一个值的值。

目前这是我的代码:

<?php
...
if(($result->num_rows)>0){
    while($row = $result->fetch_assoc()){
        print
        "<tr>".
            "<td id='numbers' class='col-md-4 text-center'>{$row["number"]}</td>".
            "<td class='col-md-1 text-center'>$row["names"]</td>".
        "</tr>";
    }
?>

<script type="text/javascript">
        var jz = $('#numbers').val();
        alert(jz);
</script>

我正在使用bootstrap,因此我可能没有为ID标记正确设置td#numbers没有返回任何内容。我不明白为什么

如果有人可以帮助我,那将意味着很多。

由于

1 个答案:

答案 0 :(得分:0)

它不是.text(),而是使用.html().val()textarea用于$index = 1; while($row = $result->fetch_assoc()){ print "<tr>". "<td id='numbers".$index."' class='col-md-4 text-center'>{$row["number"]}</td>". "<td class='col-md-1 text-center'>$row["names"]</td>". "</tr>"; $index += 1; } 等输入字段。

http://api.jquery.com/val/

http://api.jquery.com/text/

以下问题的代码:

public IEnumerable<SensorsMeasure> GetSensorsMeasureWithAlertDescription()
{
    return SensorObservationEntities.SensorsMeasures.Include(d => d.AlertsDescription.AlertDescription).ToList();
}