我有以下的jQuery該變量傳遞到PHP形式:通行證從一個jQuery函數PHP
function getSecondaryCat(val) {
$.ajax({
type: "POST",
url: "category-get-secondary.php",
data:'primary_cat='+val,
success: function(data){
$("#secondary_cat").html(data);
$("#tertiary_cat").html('<option value="">Select specific category</option>')
}
});
}
上面將數據傳遞到的PHP函數
//Get primary category value
$postPrimaryCat = $_POST['primary_cat'];
現在我想傳遞另一個名爲category_type
的變量,我如何在上面的jQuery中添加它?
'數據:{primary_cat:纈氨酸,category_type:VAL2}' – Daan
是否沒有人[讀過的手冊](http://api.jquery.com/jquery .ajax /) – RiggsFolly
使用此數據:'primary_cat ='+ val +'&category_type ='+ type' –