Jquery UI模式确认按钮无法正确呈现HTML,缺少类

时间:2015-12-09 15:58:14

标签: jquery twitter-bootstrap jquery-ui

使用bootstrap我的jQuery UI设置有些麻烦。出于某种原因,当我做一个对话框时,jQuery没有按照它应该的方式将类“ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only”添加到我的按钮中。我想知道是否有人发生了类似的问题。模态框正常工作。

JqueryUI example

为他们的例子生成了什么:

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

1 个答案:

答案 0 :(得分:1)

添加一些你试图为jquery模式实现的jquery代码。