﻿function addhits(id, obj)
{
    var xmlhttp = new xmlhttpcls("handlers/hits.axd?ID=" + id + "&action=add", "post"); 
     xmlhttp.callback = function()
     {
         obj.innerHTML = "阅读："  + xmlhttp.getText() + "次";
     }
     xmlhttp.send();
}