1234567891011121314151617181920 |
- $(function () {
- $('.js_add_shelf').click(function () {
- $.ajax({
- type: 'POST',
- url: '/api/bookshelf/insert',
- data: {book_id: book_id_shelf},
- success:function(data) {
- if (data.code) {
- $(this).text('已加入书架');
- $(this).removeClass('js_add_shelf');
- $(this).addClass('js_add_shelfed');
- consoleMain('加入书架成功');
- }
- }.bind(this),
- error:function(err) {
- consoleMain('加入书架失败');
- }
- })
- });
- })
|