在HTML5中:
如何通过正则表达式验证我的输入文本,该链表至少有1个数字?
我正在寻找的是你可以写任何东西,但至少要写一个链号
<input type="password" name="pass" placeholder="Password" pattern="[0-9]+" required>
由于
答案 0 :(得分:1)
我认为以下代码可以帮助您解决问题
<input type="text" name="country_code" pattern="^\d{1,}$"/>
答案 1 :(得分:0)
使用javascript / jquery,例如
<input id="test"/>
$('#test').on('change',testme);
function testme(e) {
if ( e.target.value.match(/[0-9]+/) ) {
alert('yay!');
}
}
表示模式属性:
<input class="span2" type="password" name="pass" placeholder="Password" pattern=".*[0-9]+.*" required>
答案 2 :(得分:0)
NewUserPref()
表示
任意数量的字符,然后是数字,然后是任意数量的字符。