function ribao_init() { $('#btnRB').on('click', function () { window.location.href = "/yeweihui/home.html"; }); } function ribao_add() { $('#btnAdd').on('click', function () { if ($('#ribao')[0].style.display == 'none') { $('#notOpenRibao').toggle(); $('#ribao')[0].style.display = ''; } else { $('#notOpenRibao')[0].style.display = ''; $('#ribao')[0].style.display = 'none'; } }); } function ribao_cancel() { $('#cancel').on('click', function () { if ($('#ribao')[0].style.display == 'none') { $('#notOpenRibao').toggle(); $('#ribao')[0].style.display = ''; } else { $('#notOpenRibao')[0].style.display = ''; $('#ribao')[0].style.display = 'none'; } }); } function ribao_commit() { $('#commit').on('click', function () { if ($('#ribao')[0].style.display == 'none') { $('#notOpenRibao').toggle(); $('#ribao')[0].style.display = ''; } else { $('#notOpenRibao')[0].style.display = ''; $('#ribao')[0].style.display = 'none'; } }); }