1

我正在像这样实例化一个按钮小部件

var button = $('<div>')
 .buttonMarkup({
 icon: 'plus',
 corners: false,
 type: 'button',
})
 .attr('id', 'my-button')
 .text('start') //when this is added the icon vanishes
 .appendTo('#my-div');

问题是当我添加文本时没有显示图标。当我添加时没有显示文本图标

有什么我忽略的吗

非常感谢提前

4

1 回答 1

1

您需要使用 增强 div 的标记.button()

演示

var button = $('<div>')
.buttonMarkup({
  icon: 'plus',
  corners: false,
  type: 'button',
})
 .attr('id', 'my-button')
 .text('start') //when this is added the icon vanishes
 .appendTo('#my-div').button();
于 2013-09-12T10:08:21.520 回答