好的,我有一个<a
标签,它调用一个切换函数来删除一个<td
标签。在那个a
标签中我有<<
...<<
在功能中,我想在执行切换时将其更改<<
为。>>
它不工作。我究竟做错了什么?
html:
<td class="filter_td" id="filter_td">
<td class="show_hide">
<a href="javascript:toggleFilters();" id="show_hide" alt="Hide Filters" title="Hide Filters"><<</a>
</td>
jQuery:
function toggleFilters()
{
var td = $("#filter_td");
td.toggle('slow');
if (td.css("display") == "none")
{
$("#show_hide").html(">>").attr('title', 'Show Filters');
}
else
{
$("#show_hide").html("<<").attr('title', 'Hide Filters');
}
}