$(function() { $.each($("span[pagecounts=yes]"),function(){ var countflag =$(this); if(countflag!=null&&countflag[0]!="undefined"){//没有使用文章计数功能 var pageid=countflag.attr("pageid"); if(pageid==null||pageid=="undefined"||pageid.match(/^\s*$/)){ pageid = $("#eprotalcurrentpageid").val(); } var moduleid = $("#eportalappportletid").val(); var url = '/eportal/ui?moduleid='+moduleid+'&pageid='+pageid+'&struts.portlet.action=/app/counting-front!savepageinfo.action'; $.ajax( { type : "post", url : url, datatype : "text", async : false, success : function(msg) { countflag.html(msg); }, error : function(msg) { } }); } }); });