Ví dụ bình luận mặc định của WordPress phải nhiều hơn 5 kí tự và sử dụng Alerts của Bootstrap để thông báo.
$('#commentform').submit(function() {
if ($('textarea#comment').val().trim().length < 5) {
if ($('.comment-length-alert').length <= 0) $('#commentform .comment-form-comment').after('<div class="comment-length-alert alert alert-info alert-dismissible" role="alert"><button id="close-info-alert" type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>Bình luận phải nhiều hơn <strong>05</strong> kí tự.</div>');
return false;
}
});
Demo ngay tại phần bình luận của bài viết này, khi bạn nhập chưa đủ 5 kí tự. Chúc các bạn thành công!
Bình luận