0

我正在显示一个带有消息的 NOTY。我想更新显示的消息,因此通知显示实时更新。

我已经尝试过了,noty 有一个显示“TEST”的文本输入字段,但它永远不会更新说你好。

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')

这可以做到吗?谢谢

4

1 回答 1

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>

于 2017-08-07T13:48:55.293 回答