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.
我想知道在保存到 MySQL 数据库时是否有办法将表单字段更改为数字。
这是我的代码
<label>Account Type:</lable><select> <option>Administrator</option> <option>Master </option> </select>
我要做的是,如果选择管理员,则另存为0,如果选择主,则保存在1
0
1
试试这个:设置value为option这样,当您选择管理员时,它将存储0,而对于主人,它将存储1
value
option
<option value="0">Administrator</option> <option value="1">Master </option>
Mozilla 开发网络上的 HTML 表单 101