我正在处理付款表单设计。我需要放credit card number
&其expiry date
字段为自动填充。 Chrome
浏览器在Safari
没有(Safari doesn't recognize the expiry_date field to be autofill
)时完美运行。
这是我的两个领域。
<input type="text" id="card_number" />
<input type="text" id="expiry_date" placeholder="MM / YY" />
通过分离month and year of the expiry date
可能有解决方案,但我应该像现在这样做。
答案 0 :(得分:0)
https://cloudfour.com/thinks/autofill-what-web-devs-should-know-but-dont/
可以指定表单字段以自动填写信用卡到期日in two ways:
cc-exp
,日期为YYYY-MM,或cc-exp-year
和cc-exp-month
分别为持有YYYY和MM的各个字段。