重新加载asp页面后为什么文本框文本会变成空白?
重新加载页面后,如何再次获取该文本框中以前的值。
因为当该页面重新加载时,文本框值会变为空白?
我如何使用 javascript 和 jquery 来做到这一点?
After reloading the page how can i get the previous values in that textbox again.
Because when that page reload then textbox value goes blank?
How can I do this using javascript and jquery?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您通常不会使用 javascript 或 jquery 保存 POST 值(尽管这可能是可能的)
您需要执行类似
You don't typically save POST values with javascript or jquery (though it is probably possible)
You need to do something like
<input type="text" value=" <? printf(POST['field']); ?>">