我使用的jQuery對代碼啓用和禁用按鈕如何使用jquery刪除CSS背後的代碼?
$(function() {
$('.CSSCheck').click(function() {
if ($("[id$='Chkbox']:checked").length > 0) {
$("#<%=Button1.ClientID %>").removeAttr('disabled');
}
else {
$("#<%=Button1.ClientID %>").attr('disabled', 'disabled');
}
});
});
後面我增加了CSS來DataList的圖像按鈕Select_Command
DataListItemCollection xxx = datalist1.Items;
int index = id;
int count = 0;
foreach (DataListItem x in xxx)
{
if (count == index)
{
(x.FindControl("btn1") as ImageButton).BorderColor = System.Drawing.Color.Blue;
(x.FindControl("btn1") as ImageButton).BorderWidth = 1;
}
}
如何刪除這個CSS使用相同的jQuery?
你的意思是刪除列表中的所有按鈕或只是特定的一個? – 2012-02-28 10:51:37
從選定的一箇中刪除,因爲我的css後面的代碼被應用在一個特定的圖像按鈕(這是選定的),我怎麼能使我的藍色通過使用我的jquery – Rocky 2012-02-28 10:54:24