function digg(getid,dingcai){
//以.post方式与dingcai.asp文件交互。注意路径
$.post('inc/dingcai.asp', { "id": getid , "dingcai": dingcai },
function(data){
data=data.indexof('yang_yes')
if(data>=0){
if(dingcai==1){
//重新获取当前"顶"并加1
var ding = parseint($(".ding"+getid).html())+1;
//重新更新"顶"的数据入库
$(".ding"+getid).html(ding);
}else{
//踩
var cai = parseint($(".cai"+getid).html())+1;
$(".cai"+getid).html(cai);
}
alert("感谢你的支持!如果不需要js提示请删除本行代码");
}else{
alert("你已经投过票了!如果不需要js提示请删除本行代码");
}
}, "text");
}
mycookies=0
id = clng(request.form("id"))
dingcai = request.form("dingcai")
if id<>"" then
if request.cookies("mycookies"&id)<>id then
'写入cookies,有效期24小时
response.cookies("mycookies"&id)=id
response.cookies("mycookies"&id).expires=dateadd("h",24,now())
else
mycookies=1
end if
else
mycookies=1
end if
'接受对应的id
'如果顶踩过来的id不为空,并且获取是顶的操作或踩的操作
if request.form("id")<>"" and request.form("dingcai")<>"" then
'如果是顶的操作
if dingcai=1 then
sql = "update dingcai set ding=ding+1 where id="&id
else
sql = "update dingcai set cai=cai+1 where id="&id
end if
if mycookies=0 then
conn.execute(sql)
response.write "yang_yes"
else
response.write "yang_no"
end if
end if
到此这篇关于asp+ajax实现顶一下、踩一下同支持与反对的实现代码的文章就介绍到这了,更多相关asp 顶、踩、支持与反对内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!