Я не могу спрятать этот стол
у меня есть код для таблицы show and hide,но я хочу скрыть его, потому что это ответ для студента
Что я уже пробовал:
<!DOCTYPE html> <head> <script src="//code.jquery.com/jquery-1.10.2.js"></script> <script> $(document).ready(function() { //To hide the table $(".hidetable").click(function () { $(".table_bg").hide("fast") }); //To show the table $(".showtable").click(function () { $(".table_bg").show(2000); }); //To hide ODD rows $(".hideoddrows").click(function () { $(".table_bg tr:odd").hide("slow") }); //To show ODD rows $(".showoddrows").click(function () { $(".table_bg tr:odd").show(1000) }); }); </script> <style> .table_bg { width:40%; font-family:verdana; font-size:15px; color:#fff; padding: 10px; text-align:center; } .table_bg th{ background: #0780BA; color: #fff; line-height:35px; } .table_bg td{ background: #99DBFB; padding:10px; color: #000; } </style> </head> <body> <h1>jQuery hide/show demo</h1> <button class="hidetable">Hide Table</button> <button class="showtable">Show Table</button> </p> <table class="table_bg"> <tr> <th>Age</th> <th>Salary</th> </tr> <tr> <td>1</td> <td>Jim</td> </tr> <tr> <td>2</td> <td>Anna</td> </tr> <tr> </tr> </table> </body> </html>
[no name]
Я поместил ваш код в jsfiddle (http://jsfiddle.net/617qLwbg/) и это, кажется, работает нормально? В чем же проблема?
ZurdoDev
Что же происходит?
j snooze
Если Таддеус говорит, что ваш код работает нормально, а вы не согласны, попробуйте очистить временные интернет-файлы. Я ударился головой о Многие столы, задаваясь вопросом, почему мои изменения javascript не приняли, только чтобы понять, что страница была кэширована.