batchoperate.js 203 B

12345678
  1. $(function()
  2. {
  3. $(document).on('change', 'input,select,textarea,radio,checkbox', function()
  4. {
  5. $(this).css('border-color', '');
  6. $(this).next('.text-error.red').remove();
  7. });
  8. })