第一篇文章和jQuery新手。看起来很难,但没有找到完全相关的帖子。
在表格中有交替的行颜色;一个类NULL /空一个类= alt。 jQuery脚本部分用于在单击时突出显示该行。
问题是:如何使用removeClass然后恢复(addClass / toggleClass)在onChange事件中删除的特定类?任何帮助赞赏。韩国社交协会。 (见下面的小提琴)
HTML
<table id="fooBar" border="0">
<tr>
<th>Text</th>
<th>Text</th>
<th>Text</th>
<th></th>
<th></th>
</tr>
<tr class="">
<td>Text</td>
<td></td>
<td></td>
<td></td>
<td>image</td>
<td>image</td>
</tr>
<tr class="alt">
<td>Text</td>
<td></td>
<td></td>
<td></td>
<td>image</td>
<td>image</td>
</tr>
<tr class="">
<td>Text</td>
<td></td>
<td></td>
<td></td>
<td>image</td>
<td>image</td>
</tr>
<tr class="alt">
<td>Text</td>
<td></td>
<td></td>
<td></td>
<td>image</td>
<td>image</td>
</tr>
</table>
CSS
table {
width:100%;
border-collapse:collapse;
table-layout:auto;
vertical-align:top;
margin-bottom:15px;
border:1px solid #999999;
}
th {
font: bold 11px"Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
color: #F2EDEB;
border-right: 1px solid #C1DAD7;
border-bottom: 1px solid #C1DAD7;
border-top: 1px solid #C1DAD7;
letter-spacing: 2px;
text-transform: uppercase;
text-align: left;
padding: 6px 6px 6px 12px;
background: #522D25 url(images/bg_header.jpg) no-repeat;
}
tr {
background: #fff;
color: #261F1D;
}
tr:hover, tr.alt:hover {
color: #261F1D;
background-color: #E5C37E;
}
.highlighted {
color: #261F1D;
background-color: #E5C37E;
}
tr.alt {
background: #F5FAFA;
color: #B4AA9D;
}
td {
border-right: 1px solid #C1DAD7;
border-bottom: 1px solid #C1DAD7;
padding: 6px 6px 6px 12px;
}
的jQuery
$(document).ready(function () {
$("tr").click(function () {
$(this).closest("tr").siblings().removeClass("highlighted");
$(this).toggleClass("highlighted");
})
});
// Note: currently only works for row without '.alt' css class assigned (ie. empty)
// question is how to replace a class and then RESTORE the class onChange
这是jsFiddle:http://jsfiddle.net/codeChaos1988/kh4VY/1/
此外,在javascript / jQuery中实际学习编程的最佳教程网站上的任何指针也将受到赞赏。
提前感谢您的帮助。
答案 0 :(得分:11)
因此您不必担心删除/恢复原始课程,请尝试将您的CSS更改为:
.highlighted {
color: #261F1D !important;
background-color: #E5C37E !important;
}
对于JS:
$('table').on('click', 'tr', function () {
var state = $(this).hasClass('highlighted');
$('.highlighted').removeClass('highlighted');
if ( ! state) { $(this).addClass('highlighted'); }
});
答案 1 :(得分:-1)
在数据表初始化部分添加了这个:
//use Observable.from as lock trigger BEFORE request is sent
var request:Observable<Response> = Observable.from([1], null).do(()=>
{
lock.lock();
}).flatMap(()=>
{
//use finally to unlock in any case
return this.http.post(url, body, options).finally(()=>
{
lock.unlock();
});
});
//share sequence to avoid multiple calls when using several subscribers
return request.share();
这很有用!