0
我正在使用jQuery UI按鈕及其圖標。我想的onclick切換按鈕的圖標,其工作但圖標覆蓋:切換jQuery UI中的按鈕圖標
/* 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'} });
});
有人能指出問題所在?
jQuery是不是jQuery用戶界面。更新了標題和標籤。 – Sparky