表单输入不会被标记为必需

时间:2017-05-13 20:21:27

标签: html css wordpress forms

我使用以下HTML代码创建了一个包含Contact Form 7的表单:

<label for=".elementor-6 .elementor-element.elementor-element-5m0lukt .wpcf7 input[type="text"]"><input type=text textarea name="your-name" placeholder="שם מלא" required id:name </input></label> 
<label for= ".wpcf7-form-control.wpcf7-text.wpcf7-tel.wpcf7-validates-as-required.wpcf7-validates-as-tel* your-email"> <input type="tel" textarea name="your-phone" input placeholder="טלפון" id:phone required</input></label>
<label for= ".wpcf7-form-control.wpcf7-text.wpcf7-tel.wpcf7-validates-as-required.wpcf7-validates-as-email* your-email"> <input type="email" textarea name="your-email" input placeholder="אימייל" id:email required</input></label>

但是,必需属性由于某种原因不起作用,并且字段可以留空。 1)如何实际需要字段? 2)如果字段留空,如何在字段旁边添加* field is required消息?

这是一个链接(此着陆页中有两个表单):mickeyberkowitz.com 谢谢!

1 个答案:

答案 0 :(得分:0)

输入是自动关闭的,因此您不要只使用</input>来关闭代码,因此您的代码应为

/>

这是一个小提琴Fidde Demo