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>
似たようなことをした人はいますか?