我在尝试找到解决方案时遇到了麻烦,而无需求助于 php 语句或 javascript。这是因为这个想法看起来很简单,我很确定必须有一种方法可以在不使用两者的情况下做到这一点。
我有一个注册表,此表上的某些字段是必需的。但我有点进退两难,因为我要求用户输入至少一个电话号码,以便在他们的订单出现问题时联系他们。
所以我有 3 个字段,“电话”“手机”“传真”
我想做的是让用户必须输入电话或手机号码才能完成表格。
但是,我想我的问题是......是否可以以required
某种方式使用该属性来达到这种效果?
以下是这些字段的 html:
<li>
<label for="phone">Phone:</label>
<input type="tel" name="phone" id="phone" value="'.htmlout($phone).'" required aria-required="true" placeholder="0317021101"title="Please enter your home or work number here. You must enter either a phone, or mobile number." maxlength="20"/>
</li>
<li>
<label for="mobile">Mobile:</label>
<input type="tel" name="mobile" id="mobile" value="'.htmlout($mobile).'" placeholder="0827564829" title="Please enter your mobile number here. You must enter either a mobile, or phone number." maxlength="20"/>
</li>
在此方面的帮助、意见或建议将不胜感激,谢谢!