我在创建按钮时使用append()。我如何拥有< span>在附加文本中?
基本上我想这样做
<button type="button" class="btn btn-default" id="test1" >
<span class="glyphicon glyphicon-arrow-left"></span>
</button>
这里
$( '<button />' , { class: 'btn btn-default', type: 'button', id: 'test1' })
答案 0 :(得分:2)
您也可以像这样使用html属性
$('<button />', {
class: 'btn btn-default',
type: 'button',
id: 'test1',
html: '<span class="glyphicon glyphicon-arrow-left"></span>'
});
var b = $( '<button />' , { class: 'btn btn-default', type: 'button', id: 'test1', html: '<span class="glyphicon glyphicon-arrow-left"></span>' });
$('body').append(b);
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
答案 1 :(得分:0)
您可以使用html:
$( '<button />' , { 'class': 'btn btn-default', type: 'button', id: 'test1',
html: '<span class="glyphicon glyphicon-arrow-left"></span>' })
注意:class是保留字。所以在引用中使用它。
答案 2 :(得分:0)
这个怎么样:
$( '<button />' , {
class : 'btn btn-default',
type : 'button',
id : 'test1',
html : '<span class="glyphicon glyphicon-arrow-left"></span>'
})