Files

8 lines
212 B
JavaScript
Raw Permalink Normal View History

2019-02-28 19:48:21 +08:00
$(function() {
//各个接口的页面
$( document ).tooltip();
$( ".question" ).hide();
$( "div.question" ).hide();
$( ".showFaqBtn" ).click(function() { $( ".question" ).toggle(); });
});