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.
在 HTML 中,可以传递多维键,例如
<input type="text" name="user_profile[name]" /> <input type="type" name="user_profile[id]" />
在我的 PHP 脚本中,我可以通过$_POST['user_profile']
$_POST['user_profile']
可以用 Java 传递这些多维键值对吗?
您可以使用字符串操作技术。
从: <input type="text" name="user_profile[name]">
<input type="text" name="user_profile[name]">
至: <input type="text" name="user_profile_name">
<input type="text" name="user_profile_name">
然后在 JS/jQuery 中执行:
$('user_profile_name')...
或者:
如果“id”元素对您来说意义不大,那么请执行以下操作:
<input type="text" name="user_profile[name]" id="user_profile_name">