我正在关注this链接,它显示了我们如何创建嵌套网格,我能够完成教程,但我试图在扩展模式下默认显示子网格:
这是Jquery函数代码:
<script type="text/javascript">
$("[src*=plus]").live("click", function () {
$(this).closest("tr").after("<tr><td></td><td colspan = '999'>" + $(this).next().html() + "</td></tr>")
$(this).attr("src", "/images/minus.png");
});
$("[src*=minus]").live("click", function () {
$(this).attr("src", "/images/plus.png");
$(this).closest("tr").next().remove();
});
</script>
问题:如何修改此代码,以便在加载网页时,网格将处于展开模式而非崩溃?