qiuzhu.js 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. function qiuzhu_init() {
  2. $('#btnQZ').on('click', function () {
  3. $("#notPlay").toggle();
  4. /*点击隐藏*/
  5. /*展示*/
  6. $('#play')[0].style.display = '';
  7. });
  8. }
  9. function help() {
  10. $('#qz_nav1').on('click', function () {
  11. if ($('#titlteZs')[0].style.display == 'none') {
  12. $('#notitle').toggle();
  13. $('#titlteZs')[0].style.display = '';
  14. } else {
  15. $('#notitle')[0].style.display = '';
  16. $('#titlteZs')[0].style.display = 'none';
  17. }
  18. })
  19. }
  20. function family_init() {
  21. /*$('#family').on('click',function () {
  22. $('#familyDisplay')[0].style.display == '';
  23. alert($('#familyDisplay')[0].style.display == 'none')
  24. if($('#familyDisplay')[0].style.display == 'none'){
  25. $('#notPlay').toggle();
  26. }else{
  27. $('#familyDisplay')[0].style.display == '';
  28. $('#notPlay')[0].style.display == 'none';
  29. }
  30. })*/
  31. }
  32. function submit_back() {
  33. $('#back').on('click', function () {
  34. if ($('#notPlay')[0].style.display = 'none') {
  35. $('#notPlay')[0].style.display = '';
  36. $('#play').toggle();
  37. }
  38. })
  39. }