ボタンをクリックしてデータベースにデータを保存したい.ここに私のコードがあります.Firefoxでは機能せず、空のアラートが表示され、データがテーブルに保存されません.
$("#Save").click(function () {
var price = $("#price").val();
var agent_1_id= $("#agent_1_id").val();
var type = $("#type").val();
$.post("ajax_files/myDeals.php",
{
price: price,
agent_1_id: agent_1_id,type:type
},
function(data) {
alert(data);
});
});
click イベントが発生し、この関数が呼び出されます。テーブルに保存する myDeals.php のコードは次のとおりです。
$price = $_REQUEST['price'];
$agent_1_id = $_REQUEST['agent_1_id'];
$type = $_REQUEST['type'];
mysql_query('insert query here');
echo "Saved Successfully ";//this is not alerted?