Jquery NOTY 更新输入或通知窗口中的 div?



我正在显示一个带有消息的NOTY。我想更新显示的消息,以便 noty 显示实时更新。

我已经尝试过这个,noty 有一个显示"TEST"的文本输入字段,但它永远不会更新为说 HELLO。

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

这能做到吗? 谢谢

从文档中:

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>

相关内容

  • 没有找到相关文章

最新更新