Javascript.RU

Создать новую тему Ответ
 
Опции темы Искать в теме
  #11 (permalink)  
Старый 02.12.2019, 12:33
Интересующийся
Отправить личное сообщение для Ganisher Посмотреть профиль Найти все сообщения от Ganisher
 
Регистрация: 07.11.2019
Сообщений: 13

daje tak net resultat
Ответить с цитированием
  #12 (permalink)  
Старый 02.12.2019, 12:47
Профессор
Отправить личное сообщение для laimas Посмотреть профиль Найти все сообщения от laimas
 
Регистрация: 14.01.2015
Сообщений: 12,990

<html>
<head>
<meta charset="utf-8">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<style>
.errorstyle {
    border: 1px solid #ff0000;
    background: #fff3f3;
}
.popover {
    box-shadow: 5px 0px 40px rgba(0,0,0, .2);
    max-width: 500px !important;
    max-height: 200px !important;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid #ff0000;
    background: #fff3f3;
}
</style>
<script>
$(function() {
    $('#second').popover({
         content: '<p></p>',
         html: true,
         trigger: 'blur',
         placement: 'bottom'
    }).on('shown.bs.popover', function () {
        var first = +this.form.firstone.value || 0,
            second = +this.value || 0;
        if(first && second && first <= second) {
            $('div.popover-body p').text('The value of first (' + first +') input must be greater than the value of secondone (' + second + ')');
            $(this).addClass("errorstyle")
        } else {
            $('div.popover').remove();
            $(this).removeClass("errorstyle")
        }
    });
});
</script>
</head>
<body>
<form>
    <div class="form-group">
        <label for="first">First:</label>
        <input class="form-control" id="first" name="firstone">
    </div>
    <div class="form-group">
        <label for="second">Second:</label>
        <input class="form-control" id="second" name="secondone">
    </div>
</form>
</body>
</html>


А нет, так нет.
Ответить с цитированием
Ответ



Опции темы Искать в теме
Искать в теме:

Расширенный поиск


Похожие темы
Тема Автор Раздел Ответов Последнее сообщение
To do list на js кнопки Clear all и Done all(+localStorage) Dethlike Общие вопросы Javascript 10 10.05.2019 15:10
Ошибка команды clear при работе бота | Discord.js ShandiEgoza Общие вопросы Javascript 0 24.02.2019 15:11
float, clear, overflow torsar (X)HTML/CSS 3 11.11.2016 09:34
jquery dialog cache гуня Общие вопросы Javascript 7 16.01.2016 17:10
Function Cache y0uix Общие вопросы Javascript 51 09.12.2014 18:40