0

我有两个 asp.net 文本框,我需要时间格式的输入掩码和日期格式的代码。还请提供 jquery 文件的 url。谢谢

4

1 回答 1

0

尝试这个,

HTML

<input type="text" id="date" />
<input type="text" id="time" />

脚本

jQuery(function($){
   $("#date").mask("99/99/9999");
    $("#time").mask("99:99");
});

阅读http://digitalbush.com/projects/masked-input-plugin/#demo查看jQuery-Mask-Plugin

Download the latest来自github 仓库

演示

于 2013-10-24T10:33:02.660 回答