如何在 onclick 后面的 ASP.NET/C# 代码中更改表单数据?
我在表单中有这样的输入:
<input name="keywords" type="text" id="keywordSearch" value="Enter keywords / publication number" class="watermark" />
然后,我有一个单击函数,当用户提交表单时会调用该函数。如何获取关键字的值并在后面的代码中的点击提交函数中更改它?
是 Form.keywords.value = '我的关键字'; 吗?
I have this input in a form:
<input name="keywords" type="text" id="keywordSearch" value="Enter keywords / publication number" class="watermark" />
I then have an click function that gets called when the user submits the form. How do I get the value of the keywords and change it in the click submit function in my code behind?
Is it Form.keywords.value = 'my keywords';?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
Request.Form["keywords"]
检索已发布的值。Use
Request.Form["keywords"]
to retrieve the value that was posted.