性別が男性か女性かというラジオボタンから値を取得しようとしています。値変数に保存しますが、 $.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
});
});
これはどのように修正できますか?何が問題ですか。