0
使用jQuery和按鈕使用我的風格,但是當我點擊按鈕風格改變了UI狀態焦點。 我嘗試刪除jQuery的風格jQuery的如何移除UI狀態焦點
$("button").mousedown(function() {
$('button').removeClass("ui-state-focus");
});
,但沒有奏效。如何刪除jquery樣式?
使用jQuery和按鈕使用我的風格,但是當我點擊按鈕風格改變了UI狀態焦點。 我嘗試刪除jQuery的風格jQuery的如何移除UI狀態焦點
$("button").mousedown(function() {
$('button').removeClass("ui-state-focus");
});
,但沒有奏效。如何刪除jquery樣式?
我添加removeClass重點和工作對我來說。
$("button").focus(function() {
$(this).removeClass("ui-state-focus");
});
您應該使用的$(this)
代替$('button')
$("button").mousedown(function() {
$(this).removeClass("ui-state-focus");
});
不適合我。 – Nar 2013-03-12 11:19:24
你想顯示更多的代碼嗎?或者撥弄它? – Kasyx 2013-03-12 11:19:57
http://pastebin.com/GjLNyzWR – Nar 2013-03-12 11:28:11