从表中拉出值

时间:2011-05-10 22:21:16

标签: javascript

你好,我在页面上有以下内容,我想拉取值:36424。值会改变,因此我试图创建一个函数,当我调用函数时将拉动它。

    <table cellspacing="0" cellpadding="3" rules="cols" border="1" 
     id="OSDataCount" style="color:Black;background-color:White;border-          
    color:#999999;border-width:1px;border-style:Solid;border-collapse:collapse;">

    <tr style="color:White;background-color:Black;font-weight:bold;">

        <th scope="col">COUNT(*)</th>

    </tr><tr>

        <td>36424</td>

    </tr>

</table>

欢呼声

4 个答案:

答案 0 :(得分:2)

使用jQuery

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js" type="text/javascript"></script>
<script type='text/javascript'>

function alertval() {
    var htmlval = $('#OSDataCount tr:eq(1)>td:first').html();
    var textval = $('#OSDataCount tr:eq(1)>td:first').text();
    alert("Val:" + val);
}

</script>

请参阅http://api.jquery.com/text/http://api.jquery.com/html/

使用原始JavaScript:

function alertval() {
    var el = document.getElementById("OSDataCount");
    alert("Val:" + el.rows[1].cells[0].innerHTML);
}

答案 1 :(得分:2)

不需要jQuery:

var table = document.getElementById('OSDataCount');
alert(table.rows[1].children[0].innerHTML); // -> 36424

See example →

答案 2 :(得分:1)

在之前(正确)答案中添加一些细节:

<script type="text/javascript">
  window.onload = function() {
    var table = document.getElementById('OSDataCount');
    var number = table.rows[1].cells[0].innerHTML;
    alert (number);
  }
</script>

答案 3 :(得分:0)

var value = document.evaluate('id(OSDataCount)/tr/td', document, null, XPathResult.NUMBER_TYPE);

快速搜索/到达。可能不会起作用,但值得一试。