我实质上重新创建了制作JS所需的表部分,并在JS小提琴中放了一些工作代码,但是当我尝试将其添加到表部分所在的位置或其他称为html的函数中时,似乎打破页面...知道将其放在哪里吗? http://jsfiddle.net/UyHj3/13/

$("tr.clickable.subheading td").click(function() {
    $(this).parents("tr.clickable.subheading").nextUntil("tr.clickable.subheading").toggle();
});​​

最佳答案

放入

$(document).ready(function () {
   // I execute your code when the DOM is ready.
});


要么

$(window).load(function () {
  // I execute your code when the entire page is loaded (including images or iframes)
});

09-17 19:03