使用bootstrap我的jQuery UI设置有些麻烦。出于某种原因,当我做一个对话框时,jQuery没有按照它应该的方式将类“ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only”添加到我的按钮中。我想知道是否有人发生了类似的问题。模态框正常工作。
为他们的例子生成了什么:
<div class="ui-dialog-buttonset">
<button type="button" class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only" role="button">
<span class="ui-button-text">Delete all items</span>
</button>
<button type="button" class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only" role="button">
<span class="ui-button-text">Cancel</span>
</button>
</div>
我正在从该示例中执行完全相同的代码,但出于某种原因,我只生成以下HTML:
<div class="ui-dialog-buttonset">
<button> type="button">Ok</button>
<button type="button">Cancel</button>
</div>
答案 0 :(得分:1)
添加一些你试图为jquery模式实现的jquery代码。