因此,在頁面上的其他函數中,我可以發佈使用JQuery的$ .post。出於某種原因,我無法讓這篇文章發送它的參數。任何想法爲什麼?文章沒有用它參數。 JQuery post
$(".changeStatus").on("click", function changeStatus(){
var permissionName = $(this).parent().children('.permissionName').val();
var empId = $(this).parent().children('.empId').val();
var permissionLevel = Number(($(this).parent().children('.permissionLevel').val())+1);
if(permissionLevel > 3){permissionLevel = 0;}
$.post("humanResourceFunctions.php/",
{
command:"changePermissionStatus"
},
function(data, status){
alert(data);
});
});
預先感謝您!
你怎麼知道它不是越過那裏? –
我正在迴應$ _POST [「命令」]。沒有返回。 –
你有鉻或火狐瓦特/螢火蟲?你有沒有檢查網絡選項卡>標題>參數? –