📅  最后修改于: 2022-03-11 15:03:11.138000             🧑  作者: Mango
$('#container').append(
$(document.createElement('button')).prop({
type: 'button',
innerHTML: 'Press me',
class: 'btn-styled',
click: function () { alert('hi'); }
})
);