﻿
function Vote()
{
    var postData="n="+$jq("input[name*='HotVote']").attr("name").substring(7,10)+"&c="+$jq("input[name*='HotVote'][checked]").val();$jq.post("./Ajax/Vote.aspx",postData,function(result)
{if(result.split('|')[0]=="投票 成功！")
{if(confirm(result.split('|')[0]+"，是否轉入結果頁？"))
window.location='/voteresult/list.shtml';}
else
alert(result.split('|')[0]);window.location='/voteresult/list.shtml';});}




