我无法在线查找有关在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>
答案 0 :(得分:0)
当书上写着“创建一个对象”时,它真正意味着“声明一个变量headRow”,然后获得一个id为“titleRow”的文档对象的引用。
所以,
var headRow; // create the "object"
headRow = document.GetElementById('titleRow'); // point to the table row "titleRow"