我想要做的是获取单选按钮值,并通过jQuery post()将其提交到php文件中并获得响应。

当我尝试发送“城市”的值时,以下代码可以正常工作。如您所见,“测试”已被注释掉。随着“测试”被注释掉,程序开始工作,“ city”的值被提交到php文件,然后被处理,返回和打印。

有人可以发现获取单选按钮值的问题吗?

<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
  $("#trans_type").click(function(){
    $('#realty_type').html("<b>Loading response...</b>");

    $.post("sql_s.php",
    {
      //  test: $('input[name=transaction_type]:checked', '#trans_type').val()
    city:"New York"
    },
    function(data,status){
    document.getElementById("object_type").innerHTML = data;
    });
  });
});
</script>

<meta charset="UTF-8">
</head>
<body>
<h1>Some title</h1><br />

<form action="" id="trans_type">
<b>What would you like?</b><br />
<input type="radio" name="transaction_type" value="2">Sell&nbsp;&nbsp;&nbsp;
<input type="radio" name="transaction_type" value="3">Buy
</form>
<div id="object_type">message comes here</div>


</body>
</html>


最佳答案

我想注释中的代码行就是您想要的。
只需添加一个逗号(,),因为它是一个对象,这就是您需要的分隔符...
因此,使用:

{
    test: $('input[name=transaction_type]:checked', '#trans_type').val(), // <- comma here
    city:"New York"
},

09-16 05:20