- 取得連結
- X
- 以電子郵件傳送
- 其他應用程式
//找出所有<button>btn</button>
$.each($('button.btn'),function(){
$(this).removeClass('btn');
$(this).addClass('ui-state-default ui-corner-all');
$(this).hover(
function() { $(this).addClass('ui-state-hover'); },
function() { $(this).removeClass('ui-state-hover'); }
);
});
留言