需要有关Javascript编码转换的帮助才能使用我的html表

时间:2011-11-28 20:24:54

标签: javascript html dom html-table submit

我有一个表,其行数取决于微调器中的数字。这确实有效,例如如果我在微调器中输入25,它会出现25行,如果我在微调器中输入7则有7行。这是通过$spinnerCount检索的。

问题是,每当我提交一个问题(使用textarea并提交buttom进入并提交问题)到表中时,它就会创建一个新行。因此,如果我在表格中有20个空行,因为我在微调器中说我想要20个问题,那么每次提交问题时都会发生,每次都会添加一个新行,所以从textarea提交20个问题就意味着table将包含20个空行和20行问题。我猜这是因为这个例子:

var enumeratorCell = document.createElement("td");

所以除了创建一个元素来创建一个新行之外,我想要检索一个元素,以便它在现有行中提交问题(每行包含一个文本框,因此问题会进入行中的文本框)每次提交问题时从顶行开始向下一行,而不是每次提交问题时都创建一个新行。问题将在“问题”栏目下。

现在有人(用户:nnnnn)向我发布了这个消息:

以下是用户自己编码的表的示例:

<table id="myTable">
   <tr>
      <td>1</td>
      <td>2</td>
   </tr>
   <tr>
      <td>3</td>
      <td>4</td>
   </tr>
</table>

以下是用户的javascript:

//If you want to retrieve or change the contents of the existing cells you can do this:

// get reference to the table
var t = document.getElementById("myTable"),
    r,
    c,
    i, j;

// loop through the rows
for (i=0; i<t.rows.length; i++) {
   // get reference to current row
   r = t.rows[i]; //
   // loop through tds of current row
   for (j=0; j<r.cells.length; j++) {
       // get reference to current cell
       c = r.cells[j]; // equivalent to t.rows[i].cells[j]
      // display content of cell
      alert(c.innerHTML);
      // change content of cell
      c.innerHTML = "New value " + i + j;
    }
}

问题是我试图将其操作到我的代码中,但#i无法使其工作。原因是因为我不知道在我的表中使用这个javascript。所以我想知道的是有人可以操纵这个javascript代码,以便它与我的表匹配吗?

下面是我的表格以及输入和提交问题的文本区域代码:

//我的表

<table id="qandatbl" align="center">
    <thead>
    <tr>
    <th><span id="qidhead">Question No</span></th>
    <th><span id="questionhead">Question</span></th>
    <th><span id="optionshead">Option Type</span></th>
    <th><span id="durationhead">Duration</span></th>
    <th><span id="weighthead">Weight(%)</span></th>
    <th><span id="answerhead">Answer</span></th>
    <th><span id="videohead">Video</span></th>
    <th><span id="audiohead">Audio</span></th>
    <th><span id="imagehead">Image</span></th>
    </tr>
    </thead>
    <tbody>
    <?php
    $spinnerCount = $_POST['textQuestion'];
if($spinnerCount > 0) {
   for($i = 1; $i <= $spinnerCount; $i++) {?>

    <tr>
    <td class="qid"><?php echo $i; ?></td>
    <td class="question"></td>
    <td class="options"></td>
    <td class="duration"></td>
    <td class="weight"></td>
    <td class="answer"></td>
    <td class="video"></td>
    <td class="audio"></td>
    <td class="image"></td>
    </tr>
    </tbody>
    <?php
}
}
?>
</table>

// textarea并提交输入和提交问题的按钮,textarea和提交按钮放在上面的表格下面

<form id="enter" action="<?php echo htmlentities($_SERVER['PHP_SELF']); ?>" method="post">
<table id='middleDetails' border='1'>
<tr>
<th class='tblheading' colspan='2'>SESSION DETAILS</th>
</tr>
<tr>
<td id="questionContent">Question:</td> 
<td id="questionTextarea"><textarea rows="5" cols="40" id="questionTxt" name="questionText"></textarea></td>
</tr>
<tr>
<td id="addQuestionRow" colspan='2'><input id="addQuestion" type="button" value="Add Question" name="addQuestionBtn" onClick="insertQuestion()" /></td>
</tr>
</table>
</form>

2 个答案:

答案 0 :(得分:0)

为占位符行添加“空白”类...为添加的每一行删除空白。

答案 1 :(得分:0)

看起来你没有得到你的桌子元素。

更改

var t = document.getElementById("myTable"),

var t = document.getElementById("qandatbl"),

我认为应该这样做。

在评论中回答您的问题: 将<?php echo $i; ?>移至问题列<td class="question"><?php echo $i; ?></td>