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.
对于<input>html 元素 - 可以像这样在名称周围省略引号吗?
<input>
<input type="text" id="nameText" name=nameTextBox>
还是我必须像这样包含引号?
<input type="text" id="nameText" name="nameTextBox">
我记住,在处理表单时,名称值与输入的值一起发送。
引号是可选的,但我认为它们是“好的做法”
编辑:并且,正如 deceze 指出的那样,满足条件,例如您的姓名(或其他属性)中没有空格、单引号或双引号或等号。我只是使用它们,使代码更易于阅读,IMO。