subpage.js 212 B

1234567
  1. $(function() {
  2. //各个接口的页面
  3. $( document ).tooltip();
  4. $( ".question" ).hide();
  5. $( "div.question" ).hide();
  6. $( ".showFaqBtn" ).click(function() { $( ".question" ).toggle(); });
  7. });