如何克服“名字” xhtml Strict 中的属性错误

发布于 2024-08-23 18:12:49 字数 206 浏览 8 评论 0原文

在我的表单中,我有这段代码

<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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

百变从容 2024-08-30 18:12:49

您应该使用 id 作为唯一标识符,而不是 name

您需要设置名称是否有特殊原因?除非有特殊原因,否则您可以删除名称声明。

You should be using id as a unique identifier instead of name.

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.

吻安 2024-08-30 18:12:49

使用身份证。

<form action="mail.php" class="contactForm" id="cform" method="post">

Use ID.

<form action="mail.php" class="contactForm" id="cform" method="post">
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文