1234567891011121314151617181920212223242526272829303132333435 |
- if ($(".qd_list").length > 0) {
- $(".accordion").click(function() {
- $(this).next().slideToggle("slow");
- var a = $(this).find(".qd_zknum").hasClass("qd_zklist");
- if (a) {
- $(this).find(".qd_zknum").removeClass("qd_zklist");
- $(this).find(".qd_zknum i").html("")
- } else {
- $(this).find(".qd_zknum").addClass("qd_zklist");
- $(this).find(".qd_zknum i").html("")
- }
- })
- };
- if ($(".bodyboxtow").length > 0) {
- $(".qd_nav li").click(function() {
- $(this).addClass("qdnvahover").siblings().removeClass("qdnvahover");
- $(".key_zx_dsp").children().eq($(this).index()).show().siblings().hide()
- })
- };
- if ($(".zhibolist").length) {
- chariqi();
- zhuangtai_sy();
- $(document).ready(function() {
- setInterval(zhuangtai_sy, 60000)
- })
- };
|