1
我有一些HTML當點擊,然後它會顯示具體內容
<div class="view-content">
<table class="views-table cols-10" style="font-size: 12px;">
<thead>
<tbody>
<tr class="even" style="background-color: rgb(255, 255, 255);">
<td class="views-field views-field-title" style="background-color: rgb(248, 248, 248); color: black;">
<b>Is there any fees charged to lodge the complaint?</b>
<p style="font-size: 12px; display: none;">
</td>
</tr>
<tr class="odd" style="background-color: rgb(248, 248, 248);">
<td class="views-field views-field-rownumber" style="background-color: rgb(248, 248, 248); color: black;"> 3 </td>
<td class="views-field views-field-title" style="background-color: rgb(248, 248, 248); color: black;">
<b>Can I lodge a complaint on behalf of another person?</b>
<p style="font-size: 12px; display: none;">
</td>
</tr>
和我添加的jQuery功能
$(document).ready(function() {
$('.view-content').find('table tbody tr').each(function() {
$(this).find('td.views-field-title p').hide();
// alert($(this).html());
});
})
問題是,當我補充一下:
$('td.views-field-title b').click(function() {
$('td.views-field-title p').show();
})
它沒有工作,動作會顯示<p></p>
的所有內容 而不是顯示<p></p>
對於選定的'td.views-field-title b'
。
任何想法?
感謝,它完美 – syncrolord 2011-06-10 03:49:33
讓說,當用戶點擊特定的b含量那麼它會隱藏已經顯示的p,我可以這樣做$('td.views-field-title b')。click(function(){('。view-content')。find('table tbody tr')。each(function(){(this).find('td.views-field-title p')。hide(); }); $(this).next('p')。show(); }) – syncrolord 2011-06-10 04:10:08
@syncrolord:我爲此添加了更新,比試圖在評論中堵塞一堆代碼更容易。儘管你的評論中的代碼看起來很正確。 – 2011-06-10 04:18:16