//id=customeridcard 標簽添加監聽改變事件 (function ($) { const o = $.fn.val; $.fn.val = function () { const r = o.apply(this, arguments); if (this.is("#customeridcard") && arguments.length > 0) { this.trigger("change"); } return r; } })(jQuery);
$("#customeridcard").change(function () { Method(); //執行方法 })