在javascript中创建一个指向具有“id”的表行的对象

时间:2010-03-16 20:17:22

标签: javascript

我无法在线查找有关在javascript中创建对象并将其指向html中的id的信息。

以下是我到目前为止的JavaScript:

 function countRecords()
 { 
 headRow=new Object();
 //point to specific id here?
 var rowCount = 0;

HTML:

<table id="prodTable">
 <tr><th colspan="8">Digital Cameras</th></tr>
 <tr id="titleRow">
  <th>Model</th>
  <th>Manufacturer</th>
  <th>Resolution</th>
  <th>Zoom</th>
  <th>Media</th>
  <th>Video</th>
  <th>Microphone</th>
 </tr>

1 个答案:

答案 0 :(得分:0)

当书上写着“创建一个对象”时,它真正意味着“声明一个变量headRow”,然后获得一个id为“titleRow”的文档对象的引用。

所以,

var headRow; // create the "object" 
headRow = document.GetElementById('titleRow'); // point to the table row "titleRow"