$(function()
{
    $("#send").click(function()
    {
        var xuan = $("input[@type='radio'][@checked]").val();
         $.ajax({
            type:"post",
            url:"./vote.php",
            dataType:'json',
            data:"xuan="+xuan,
            success:function(num)
            {
                alert('投票成功!');
            }
        })
    })
});