我正在使用带有图标的 jquery UI 按钮。我想切换按钮 onclick 的图标,它的工作但图标是压倒一切的:
/* initialize the button at document.ready event */
$("#buttonid"). button({ icons: { primary: 'ui-icon-play'} });
/* binding event */
$("#buttonid").toggle(
function () {
/* code */
$(this).button({ icons: { primary: 'ui-icon-play'} }); },
function () {
/* code */
$(this).button({ icons: { primary: 'ui-icon-pause'} });
});
有人可以指出问题吗?