product = {}; /** * 产品浏览次数 */ product.viewcount = function(url, productid ) { url+='/product/stathit.do?productid='+productid; url+="&ajaxdate="+new date(); url+="&jsoncallback=?"; //alert(url); jquery.getjson(url, function(data){ try{ jquery("#views").text(data.hits); }catch(e){} });//end of jquery.getjson }//end of function /*****************************/ cms = {}; /** * 浏览次数 */ cms.viewcount = function(url, contentid ) { //url='http://localhost:80/cmsm/content/contentcount.do'; //c = c || "commentlistdiv"; //url="http://192.168.15.138:8080/cmsm/"; //$("#" + c).load(base + "/comment_list.jspx", options); url+='/content/contentcount.do?contentid='+contentid url+="&ajaxdate="+new date(); url+="&jsoncallback=?"; //alert(url); jquery.getjson(url, function(data){ // alert(data); // alert(data.hits); try{ jquery("#views").text(data.hits); }catch(e){} });//end of jquery.getjson }//end of function