English 中文(简体)
我怎么能接触到一个ad子的幼row?
原标题:How do I access child rows of a thead element?

我对贾瓦特说了新话,因此我不敢肯定,如果我不敢看到,或者如果我看到......的东西,那么我不知道什么。 我有一封信件,装上数据库查询结果,然后制作图表(有d3图书馆),然后将原始数据输入表格。 迄今为止,这一切都发挥了巨大作用。

下面我要做的是,能够把图表上的个人数据线汇总起来。 我不要求Ajax回到服务器上,再获得数据并重新分类,而只是从原数表中读到数据,并重写图表——所有客户。 我的问题是试图从<代码><thead>和<terson>要素中获取各栏名数值。 我可以这样做:

tbody = $("#raw_body");

console.log(tbody);

参看Pabug console:

[tbody#raw_body]

在哥尔,我可以通过物体点击,看到[0]例有“子女”等。 然而,我每次尝试这样的事情:

console.log(tbody[0].children[0]);

我收到了:

undefined

因此,我如何处理分配给 Java印物体的表格的行文?

r = tbody[0].children[0];
最佳回答

。 你们可以利用这一途径,而不是通过行走。

http://www.javascriptkit.com/domref/tableproperties.shtml

var tableObj = $("#myTable").get();
for(var i in tableObj.rows) {
    // Do something
    alert( tableObj.rows[i].innerHTML );
}

如果你想使用 j:

var $rows = $("#raw_body tr");
$rows.each(function() {
    // Do something
    alert( $(this).html() );
});
问题回答

$>#raw_one ters tr”,将给你表格中的所有浏览量,并给他一个 raw子。

I m not sure what you mean by: "So how do I address rows of the table for assigning to Javascript objects, like this?"

它实际上有<条码>。

tbody[0].childNodes[0]

相反。

$("#raw_body")[0]

返回原主DOM物体,而不是 j。 DOM物体没有children 方法(*)。 如果您希望破碎文本,则使用eq(<>:

var first_row= $( #raw_body ).eq(0).children().eq(0);

但是,你可以忽略<代码><0><0>>>(#raw_one >),因为只有一项内容与#raw_one相吻合。 j 彩色包裹处理一个内容和一个内容清单,因此不需要提取一个单一要素,才能打上<儿童编码>。

*:虽然有<儿童代码>Nodes 财产。 也许你不想这样做,因为那时你不得不担心一下在要素之间白空间的文字节点。 然而,表格中特别有<代码>各行和 > 易于使用之物/代码>,因此,您可以:

var first_row= $( #raw_body )[0].rows[0];




相关问题
selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

How to fire event handlers on the link using javascript

I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

javascript debugging question

I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...

Parsing date like twitter

I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.