插入时间到期日期格式屏蔽(MM/YYYY)
//信用卡到期日期格式(MM/YYYY)输入时间请帮助我。插入时间到期日期格式屏蔽(MM/YYYY)
在此先感谢。
<div class="pay-detail"> <label>Exp. Date</label>
<input type="text" class="form-control expdate" placeholder="10/2019" name="expdate" maxlength="7" value="" id="expdate">
</div>
$("body").on("keyup", "#expdate", function (event) {
var foo = $(this).val().split("/").join(""); // remove hyphens
if (foo.length > 0) {
foo = foo.match(new RegExp('.{1,2}', 'g')).join("/");
}
$(this).val(foo);
});
回答:
我希望你所有的需要在这里,因为我回答你的最后一个问题。
.expiration { border: 1px solid #bbb;
}
.expiration input {
border: 0;
text-align: center;
outline: 0; /* remove if you want input highlight */
}
<span class="expiration"> <input type="text" name="month" placeholder="MM" maxlength="2" size="2" required="true" />
<span>/</span>
<input type="text" name="year" placeholder="YY" maxlength="2" size="2" required="true" />
</span>
以上是 插入时间到期日期格式屏蔽(MM/YYYY) 的全部内容, 来源链接: utcz.com/qa/265079.html