$(function(){ $('#viewMode .view-three').on('click',function(){ // console.log('message'); $('#viewMode .view-three').addClass('now'); $('#viewMode .view-four').removeClass('now'); $('.content').removeClass('view-four').addClass('view-three hide-back'); setTimeout(function(){ $('.content').removeClass('hide-back'); $('#filtercontrol-2,#filtercontrol-3,#filtercontrol-4').attr('checked',true); $('#filtercontrol-2,#filtercontrol-3,#filtercontrol-4').removeAttr('checked'); },380); }); $('#viewMode .view-four').on('click',function(){ $('#viewMode .view-four').addClass('now'); $('#viewMode .view-three').removeClass('now'); $('.content').removeClass('view-three').addClass('view-four hide-back'); setTimeout(function(){ $('.content').removeClass('hide-back'); $('#filtercontrol-2,#filtercontrol-3,#filtercontrol-4').attr('checked',true); $('#filtercontrol-2,#filtercontrol-3,#filtercontrol-4').removeAttr('checked'); },380); }); // $(document).on('click','.add_bookcase',function(){ // if(confirm('確定要兌換?')){ // $.ajax({ // url:'/activities/ajax/act15/ajax_buy_ebook.php', // type:"POST", // async:false, // data:'sid='+$(this).attr('sid'), // error:function(d){ // alert(d.responseText); // }, // success:function(d){ // switch(d){ // case "NO_MEMBER_ID": // alert('請先登入'); // window.location='/member-login/'; // break; // case "NO_ENOUGH_MONEY": // alert('菁點不足,無法兌換'); // break; // case "ERROR1": // case "ERROR2": // alert('兌換失敗,資料庫異常'); // break; // case "ALREADY_BUY": // alert('已擁有此本電子書,請至「我的書櫃」觀看'); // break; // case "SUCCESS": // alert('兌換成功,請至「我的書櫃」觀看'); // location.reload(); // break; // } // } // }) // } // }) });