Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个表单(例如下面的表单),我在其中键入数据,但我也想发送用户不直接输入的数据,例如通用 ID(在这种情况下为用户)
<form name="input" action="" method="post"> Username: <input type="text" name="user"> <input type="submit" value="Submit"> </form>
不知道我说得够不够清楚,希望如此。
尝试hidden输入:
hidden
<input type="hidden" value="foo" name="user_id" />
用户看不到它,但请记住,此类输入可能会被欺骗,并且需要像任何其他输入一样在服务器上进行验证。