我有一个输入了两次密码的表格。我检查密码的复杂性和一致性,并在附加到 INPUT 字段的弹出窗口中显示适当的错误消息:
<a href="#" id="aIdPwd2" data-toggle="manual" data-content="The password entered does not match the one previously entered" data-placement="right" href="#" rel="popover">
<input type="password" id="iIdPwd2" class="fmt1" size="60" value=""/>
</a>
使用此代码:
$("#aIdPwd2").popover({content: msg});
您可以动态选择将要显示的消息。但是一旦显示一次,它将始终保持不变。
我阅读了很多关于这个热门问题的文章并尝试了很多事情(将 2 个不同的弹出框附加到同一个输入,更改 getElementsByClassName("popover-content") 中的内部 html,销毁并重新创建弹出框,..),但没有到目前为止的任何成功。
非常感谢有关如何更改已显示的引导弹出框内容或任何类型的解决方法的解决方案。