发布网友 发布时间:2022-04-20 03:57
共9个回答
热心网友 时间:2022-04-20 05:26
把<input type="text">改成<input type="number">就可以啦热心网友 时间:2022-04-20 06:44
<input type="text" class="no-ime">
$(".no-ime").focusin(function(){
$(this).attr("type","url");
});
$(".no-ime").focusout(function(){
$(this).attr("type","text");
});
$(".no-ime").on("input", function(){ var that = $(this); var val = that.val(); var expression = /[\u4E00-\u9FA5]/; var rep = new RegExp(expression); if(rep.test(val)){
alert("请使用拼音输入!");
that.val("");
}
});
热心网友 时间:2022-04-20 08:19
在长期相处中,宁母被小倩的勤劳善良感动,但仍担心其鬼魂身份,不能生育。小倩告知,采臣天注福册,命有三子。宁母答应。采臣与小倩终成眷属。热心网友 时间:2022-04-20 10:10
试试 type='number'热心网友 时间:2022-04-20 12:18
试着将type:text改成number;热心网友 时间:2022-04-20 14:43
<input type="text" pattern="\d*">热心网友 时间:2022-04-20 17:24
type="tel" 比number更好使 虽然是电话用的热心网友 时间:2022-04-20 20:22
希望能帮助到大家!
热心网友 时间:2022-04-21 03:08
这个是自带的。手机端会自动检测,如果是输入框,文本框获得焦点会自动弹出键盘