我必须以附加的图像格式显示信息消息。我已经在jQuery中看到了错误消息的代码。我尝试了ui-state-info
课,但我无法得到如下的确切内容。
我试过的代码是
<div class="ui-widget">
<div class="ui-state-error ui-corner-all" style="padding: 0 .7em;">
<p>
<span class="ui-icon ui-icon-alert"
style="float: left; margin-right: .3em;"></span>
<strong>Alert:</strong> Sample ui-state-error style.
</p>
</div>
</div>
答案 0 :(得分:0)
你可以试试这个:
<div class="ui-widget">
<div class="ui-state-info ui-corner-all" style="padding: 0 .7em;">
<p>
<span class="ui-icon ui-icon-info"
style="float: left; margin-right: .3em;"></span>
<strong>Information:</strong> Sample ui-state-error style.
</p>
</div>
</div>