12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- function qiuzhu_init() {
- $('#btnQZ').on('click', function () {
- $("#notPlay").toggle();
- /*点击隐藏*/
- /*展示*/
- $('#play')[0].style.display = '';
- });
- }
- function help() {
- $('#qz_nav1').on('click', function () {
- if ($('#titlteZs')[0].style.display == 'none') {
- $('#notitle').toggle();
- $('#titlteZs')[0].style.display = '';
- } else {
- $('#notitle')[0].style.display = '';
- $('#titlteZs')[0].style.display = 'none';
- }
- })
- }
- function family_init() {
- /*$('#family').on('click',function () {
- $('#familyDisplay')[0].style.display == '';
- alert($('#familyDisplay')[0].style.display == 'none')
- if($('#familyDisplay')[0].style.display == 'none'){
- $('#notPlay').toggle();
- }else{
- $('#familyDisplay')[0].style.display == '';
- $('#notPlay')[0].style.display == 'none';
- }
- })*/
- }
- function submit_back() {
- $('#back').on('click', function () {
- if ($('#notPlay')[0].style.display = 'none') {
- $('#notPlay')[0].style.display = '';
- $('#play').toggle();
- }
- })
- }
|