$("#submit_vote").click(function(e){ $.ajax( { type: "POST", url: "ajax_submit_vote.php", data: $('#poll_form').serialize(), success: function( response ) {} });});然后,您应该在PHP脚本中可以访问POST变量“ poll_option”。

$("#submit_vote").click(function(e){ $.ajax( { type: "POST", url: "ajax_submit_vote.php", data: $('#poll_form').serialize(), success: function( response ) {} });});然后,您应该在PHP脚本中可以访问POST变量“ poll_option”。