单击按钮时如何在输入字段上保留表数据

时间:2018-03-16 09:52:19

标签: javascript jquery



<script>
function post()
{

	if(document.getElementById("stdName").value == "select"){
		alert("select a student name")
		return false;

}
</script>
&#13;
<table>
<tr>
<th>id</th>
<th>name</th>
</tr>
<tr>
<td><input type="text" id="id1" name="id1"></td>
<td><select id="stdName" name="stdName">
	<option>select</option>
	<option>a</option>
	<option>b</option>
	<option>c</option>
  </select>
</td>
</tr>
</table>
<button id="prerec" onclick="return post()">GetRecord</button>
&#13;
&#13;
&#13;

我有一张表,在输入学生姓名并点击按钮(不是提交按钮)时,我将能够看到该特定学生的先前记录。但是一旦获得前一条记录,输入字段中的名称就会消失,这不应该发生。我怎么能保留这个名字?

0 个答案:

没有答案