Jquery NOTY обновить ввод или div в окне уведомлений?
Я показываю NOTY с сообщением в нем. Я хотел бы обновить отображаемое сообщение, поэтому ноти показывает живые обновления.
Я попробовал это, и у ноти есть поле для ввода текста с показом 'ТЕСТ', но оно никогда не обновляется, чтобы сказать ПРИВЕТ.
var n = noty({ type: 'information', layout: 'center', text: "<input id='msg' name='msg' value='TEST' />",
dismissQueue: true, theme: 'relax', modal: true, maxVisible: 1 })
$('#msg').val('HELLO')
Можно ли это сделать? Спасибо
1 ответ
Решение
Из документации:
new Noty({
...
text: 'Some notification text',
...
}).show();
Фрагмент:
new Noty({
type: 'information',
layout: 'center',
text: "<input id='msg' name='msg' value='TEST' />",
dismissQueue: true,
theme: 'relax',
modal: true,
maxVisible: 1
}).show();
$('#msg').val('HELLO')
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://rawgit.com/needim/noty/master/lib/noty.css">
<script src="https://rawgit.com/needim/noty/master/lib/noty.min.js"></script>