在HTML中使用enctype 属性来设置在提交到服务器时是否对表单数据进行编码。
<!DOCTYPE html>
<html>
<body>
<p>Which sports do you like?</p>
<form action = "" method = "post" enctype = "multipart/form-data">
<input type = "checkBox" name = "vehicle" value = "football" checked> Football<br>
<input type = "checkBox" name = "vehicle" value = "cricket" checked> Cricket<br>
<input type = "checkBox" name = "vehicle" value = "hockey"> Hockey<br>
<input type = "submit" value = "Submit">
</form>
</body>
</html>
以上就是如何在使用HTML提交表单数据时指定是否对其进行编码?的详细内容,更多请关注编程之家其它相关文章!