我正在通过load()方法将表格加载到我的页面中。
表格的第一行是可点击的,点击后必须切换表格的其余部分。我正在使用的代码如下:
$('.collapsable tr:first').live('click', function() {
$('.collapsable tr:first').nextAll().slideToggle("fast");
});
我希望在加载页面时隐藏表格。我尝试过使用: $('。collapsable tr:first')。live('load',function(){ 但没有运气。
还试过这个: $('。collapsable tr:first')。nextAll()。slideToggle(“fast”);进入document.ready函数但它也什么也没做。
有人可以帮忙吗?
由于
答案 0 :(得分:1)
这可能对你有帮助。
使用.click而不是使用.live:
$('.collapsable tr:first').click(function() {
$('.collapsable tr:first').nextAll().slideToggle("Show");
});