html – 所有浏览器都忽略无名输入字段吗?

前端之家收集整理的这篇文章主要介绍了html – 所有浏览器都忽略无名输入字段吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

如果浏览器没有指定name属性,它是否可以保证不发送输入元素?

例如,我们可以假设POST下面的表格不会发送信用卡号码吗?

最佳答案

Is it guaranteed that a browser doesn’t send an input element if it doesn’t have the name attribute specified?

是的(除非你用JavaScript来改变它).

规范很清楚,controls without names cannot be successful.

A successful control must be defined within a FORM element and must have a control name.

原文链接:https://www.f2er.com/html/426776.html

猜你在找的HTML相关文章