123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- $(function(){
-
-
- var professorId = GetQueryString("professorId");
- var resourceId = GetQueryString("resourceId");
- var userid=$.cookie("userid");
- var returnId;
- var ifurl = window.location.href;
-
- ifCollection();
-
- $('.attentBtn').click(function(){
- if (userid && userid != "null" && userid != null) {
- if($(this).is('.attented')){
- cancelCollectionExpert();
- }else{
- collectionExpert();
- }
- }else{
- $.MsgBox.Alert('提示',"请先登录再进行关注");
- $("#mb_btn_ok").val("去登录");
- var aele = document.createElement('a');
- $("#mb_btnbox").append(aele);
- $("#mb_btnbox a").css({
- 'display': "block",
- 'width': '100%',
- 'height': '40px',
- 'position': 'absolute',
- 'bottom': '-6px',
- 'left': '0'
- });
- aele.setAttribute('href', '../login.html');
- }
- })
-
-
- function ifCollection() {
- if(ifurl.indexOf("professorId") >= 0){
- var data = {"professorId": userid,"watchObject": professorId}
- }else{
- var data = {"professorId": userid,"watchObject": resourceId}
- }
-
- $.ajax({
- url:"/ajax/watch/hasWatch",
- data:data,
- dataType: 'json',
- type: 'get',
- timeout: 10000,
- async: false,
- success: function(data) {
- if(data.success && data.data != null) {
- $(".attentBtn").addClass('attented');
- $('.attentBtn i').text('已关注');
- returnId = data.data.watchObject;
- } else {
- $(".attentBtn").removeClass('attented');
- $('.attentBtn i').text('关注');
- }
- },
- error: function() {
- $.MsgBox.Alert('提示',"服务器链接超时");
- }
- });
- }
-
-
- function collectionExpert() {
- if(ifurl.indexOf("professorId") >= 0){
- var data = {"professorId": userid,"watchObject": professorId,"watchType": 1}
- }else{
- var data = {"professorId": userid,"watchObject": resourceId,"watchType": 2}
- }
- $.ajax({
- url:"/ajax/watch",
- data:data,
- dataType: 'json',
- type: 'POST',
- timeout: 10000,
- async: false,
- success: function(data) {
-
- if(data.success) {
- returnId = data.data;
- $(".attentBtn").addClass('attented');
- $('.attentBtn i').text('已关注');
-
- }
- },
- error: function() {
- $.MsgBox.Alert('提示',"服务器链接超时");
- }
- });
- }
-
-
- function cancelCollectionExpert() {
- $.ajax({
- url:"/ajax/watch/delete",
- data: {
- professorId: userid,
- watchObject: returnId
- },
- dataType: 'json',
- type: 'post',
- timeout: 10000,
- async: true,
- success: function(data) {
-
- if(data.success) {
- $(".attentBtn").removeClass('attented');
- $('.attentBtn i').text('关注');
-
- }
- },
- error: function(data) {
- $.MsgBox.Alert('提示',"服务器链接超时");
- }
- });
- }
-
- })
|