我无法成功使用 jQuery Masked Input Plugin 文本输入,但如果我将文本粘贴到屏蔽文本框中 - 我无法捕获Completed事件。
来自插件站点的示例:
<script type="text/javascript">
jQuery(function ($) {
$("#testtext").mask("99/99/9999", { completed: function () {
alert("You typed the following: " + this.val());
} });
});
</script>
有人做过类似的吗?