//右侧导航 $(".right_menu li").hover(function () { var liWidth = $(this).width(); $(this).animate({left: (50 - liWidth) + 'px'}, 200); }, function () { $(this).animate({left: '0px'}, 200); }) //浏览器版本低时关闭按钮 $(".btn_close").click(function () { $(".ie_title").remove(); }) //折叠面板 $(document).ready(function () { $('.collapse.in').prev('.panel-heading').addClass('active'); $('.panel') .on('show.bs.collapse', function (a) { $(a.target).prev('.panel-heading').addClass('active'); }) .on('hide.bs.collapse', function (a) { $(a.target).prev('.panel-heading').removeClass('active'); }); }); //内容点赞 var contentUrl = location.search; var likeUrl = contentUrl.substr(4, 10); function likeArticle() { $.ajax({ type: "POST", url: "/articleLike.html?articleid=" + likeUrl + "&type=1", data: '', dataType: "json", success: function (result) { //回调函数,result,返回值 $("#articleLike").html(result.count); if (result.count != '0') $(".like-btn").attr("disabled", "true"); } }) }