我试图从单选按钮中获取价值,比如性别是男性还是女性。我将它存储在值变量中,但是在将它传递给 $.post 时它不起作用?代码片段是 -
$(document).ready(function() {
// Handler for .ready() called.
$("input:radio[name=gender]").click(function() {
var value = $(this).val();
alert (value);
});
alert (value);
$.post("gendersearch.php", {queryString: ""+value+""}, function(data) { // Do an AJAX call
$('#suggestions').fadeIn(); // Show the suggestions box
$('#suggestions').html(data); // Fill the suggestions box
});
});
如何纠正?问题是什么。