zentaopms/extension/biz/flow/js/batchoperate.js
2023-05-16 10:50:42 +08:00

9 lines
203 B
JavaScript

$(function()
{
$(document).on('change', 'input,select,textarea,radio,checkbox', function()
{
$(this).css('border-color', '');
$(this).next('.text-error.red').remove();
});
})