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>このように名前の周りの引用符を省略できますか?
<input>
<input type="text" id="nameText" name=nameTextBox>
または、このように引用符を含める必要がありますか?
<input type="text" id="nameText" name="nameTextBox">
フォームが処理されると、入力された値とともに名前の値が送信されることに注意してください。
引用符はオプションですが、「良い習慣」と考えています
編集:そして、 deceze が指摘したように、名前 (または他の属性) にスペース、一重引用符または二重引用符、または等号がないなどの条件が満たされています。私はそれらを使用するだけで、コードが読みやすくなります.IMO.