从div中检索jQuery数据

时间:2012-07-19 07:24:13

标签: jquery

<div align="left" style="margin-bottom:3px;"> 
    <b>ID:</b>
    37749
    <b>Active on:</b>
    03/28/2012
</div>

这是我的内容,如何检索数字。使用Jquery

3 个答案:

答案 0 :(得分:2)

应该添加一些额外的HTML。

<div align="left" style="margin-bottom:3px;"> 
    <b>ID:</b>
    <span id="id">37749</span>
    <b>Active on:</b>
    <span id="active-on">03/28/2012</span>
</div>

jQuery的:

$(function () {
var theID = $('#id').text(),
    activeOn = $('#active-on').text();
});

答案 1 :(得分:2)

$('div').contents().map(function() {
    if (this.nodeType == 3 && this.nodeValue.replace(/\s/g, '').length !== 0) {
        return this.nodeValue.replace(/\s/g, '');
    }
}).toArray();

<强> Demo

答案 2 :(得分:1)

var content=$('div').innerHTML();
var arr=content.split("</b>");
var ID=arr[1].split("<b>")[0];
var date=arr[3];