新微赢技术网

标题: [求助]如何才能使表单文本框中内容在网页刷新时不丢掉 [打印本页]

作者: 魔舞飞扬    时间: 2010-1-8 02:16
标题: [求助]如何才能使表单文本框中内容在网页刷新时不丢掉
<form id="form1" name="form1" method="post" action="">
<table width="400" border="0">
<tr>
<td><label>
<input name="text" type="text" id="s2" value="中华人民共和国" />
</label></td>
</tr>
</table>
</form>
<script language="javascript">
form1.text.value=form1.text.value+"万岁"
</script>
这程序在执行时表单文本框的内容变成了"中华人民共和国万岁",但在该网页刷新后文本框的内容仍然是"中华人民共和国",请教有什么方法可以使该网页在刷新后文本框的内容是变动后的内容"中华人民共和国万岁"。
作者: 熾天使rose    时间: 2010-1-8 02:16
上面写错了,程序中《form1.text.value=form1.text.value+"万岁"》这句是在function addnew()中的一句,即
<script language="javascript">
function addnew()
{....
form1.text.value=form1.text.value+"万岁"
....}
</script>
该程序在刷新后文本框的内容仍然是原先的"中华人民共和国",而不是"中华人民共和国万岁",请教有什么方法可以使该网页在刷新后文本框的内容是变动后的内容"中华人民共和国万岁"。




欢迎光临 新微赢技术网 (http://bbs.weiying.cn/) Powered by Discuz! X3.2