以下是我用来展开和折叠表格的脚本。这工作正常但我现在需要知道如何在扩展和折叠表时将文本从+更改为 - 。我想避免使用这些图标的图像。任何建议都会很棒!谢谢:))
<script type="text/javascript">
jQuery(document).ready(function ()
{
jQuery(".content").hide();
jQuery(".collapselabel").click(function ()
{
Query(this).next(".content").slideToggle(200);
});
});
</script>
这是我的标签和表格
<div class="collapselabel">
<label> + Shops </label>
</div>
<div class="content">
<table>
<tr>
<td width="400">
Shop One
</td>
<td width="400">
Shop Two
</td>
<td width="400">
Shop Three
</td>
</tr>
</table>
</div>
答案 0 :(得分:1)
快速执行此操作的方法是
<script type="text/javascript">
jQuery(document).ready(function ()
{
jQuery(".content").hide();
jQuery(".collapselabel").click(function ()
{
Query(this).next(".content").slideToggle(200);
if($(".collapselabel label").html() == " + Shops")
$(".collapselabel label").html() == " - Shops";
else
$(".collapselabel label").html() == " + Shops";
});
});
</script>