feedbackcount.js
上传用户:andy18
上传日期:2022-05-22
资源大小:83k
文件大小:2k
源码类别:

xml/soap/webservice

开发平台:

Java

  1. function myRTrim(str, trimStr)
  2. {
  3. var s = new String(str);
  4. if (trimStr.indexOf(s.charAt(s.length-1)) != -1)
  5. {
  6. var i = s.length - 1;
  7. while (i >= 0 && trimStr.indexOf(s.charAt(i)) != -1){i--;}
  8. s = s.substring(0, i+1);
  9. }
  10. return s;
  11. }
  12. var _FeedbackCountStack = "";
  13. var _FeedbackCountResult = "";
  14. function AddFeedbackCountStack(ID)
  15. {
  16. _FeedbackCountStack += ID + ",";
  17. }
  18. function LoadFeedbackCount()
  19. {
  20.     var url = "http://comments.blog.csdn.net/NewCount.aspx?FeedbackCountStack=" + _FeedbackCountStack + "&jsoncallback=?";
  21.     $.getJSON(url,function(data){
  22.         _FeedbackCountResult = data;
  23.         FillFeedbackCount();
  24.     });
  25. }
  26. function FillFeedbackCount()
  27. {
  28. if(_FeedbackCountResult == null || _FeedbackCountResult == "")
  29. return;
  30. var myFeedbackResultArray = _FeedbackCountResult.split(",");
  31. var TmpResult;
  32. for(var i=0; i<myFeedbackResultArray.length; i++)
  33. {
  34. TmpResult = myFeedbackResultArray[i].split("=");
  35. document.getElementById("FeedbackCount_" + TmpResult[0]).innerHTML = TmpResult[1];
  36. }
  37. }
  38. function checkNull()
  39. {
  40. var searchScope = document.getElementById('Search_ddlSearchScope').value;
  41. var searchText = document.getElementById('inputSearch').value;
  42. if(searchText!='')
  43. {
  44.     var searchUri = "http://so.csdn.net/BlogSearchResult.aspx?q=" + searchText; ;
  45. if(searchScope != 'all')
  46. searchUri = searchUri + " username:"+searchScope;
  47. window.open(searchUri);
  48. }
  49. return false;
  50. }
  51. function keyb(evt)
  52. {
  53. var eve = evt==null?window.event:evt;
  54. if (eve.keyCode==13)
  55. {
  56. checkNull();
  57. return false;
  58. }
  59. else return true;
  60. }