如何克服“名字” xhtml Strict 中的属性错误
在我的表单中,我有这段代码
<form action="mail.php" class="contactForm" name="cform" method="post">
问题是,当我验证时,它告诉我“名称”在 xhtml strict 上是不允许的。 有没有办法我可以使用其他东西来做到这一点。
谢谢
in my form i have this code
<form action="mail.php" class="contactForm" name="cform" method="post">
Problem is when i validate it tells me "name" is not allowed on xhtml strict.
is there a way i can use soem thing else for this.
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该使用
id
作为唯一标识符,而不是name
。您需要设置名称是否有特殊原因?除非有特殊原因,否则您可以删除名称声明。
You should be using
id
as a unique identifier instead ofname
.Is there a particular reason that you need to set the name though? You can just remove the name declaration unless there's a reason for it.
使用身份证。
Use ID.