How to send hidden data

て烟熏妆下的殇ゞ 提交于 2019-12-30 02:36:13

问题


I have a form(like the one below for example) where I type data, but I also want to send data which are not directly entered by the user, for example a generic Id(for a user in this case)

<form name="input" action="" method="post">
Username: <input type="text" name="user">
<input type="submit" value="Submit">
</form>

Don't know if I have been clear enough, I hope so.


回答1:


try a hidden input:

<input type="hidden" value="foo" name="user_id" />

The user can't see it, but remember that such inputs can be spoofed and need to be validated on the server just like any other input.



来源:https://stackoverflow.com/questions/17505726/how-to-send-hidden-data

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!