我在我的html页面中构建了这个函数:
<script type = "text/javascript">
function set() {
var type = 'test';
var status = 0;
var id = 2;
$.post("sys/class/buttonHandler.php"), { status: status};
}
</script>
由此按钮触发:
<button type="button" onclick="set()" class="btn">Press here</button>
到达此buttonHandler.php:
<?php
require 'class.global.php';
$type = 'test';
$status = $_POST['status'];
$id = 2;
set($type, $status, $id);
?>
在class.global.php中正确执行此函数:
function set($type, $status, $id)
{
$result = mysql_query("UPDATE users SET $type = '$status' WHERE id = '$id'");
}
问题是当我尝试更改javascript函数传递的参数或者当我尝试添加其他两个参数时,例如:
<script type = "text/javascript">
function set_profile() {
var type = 'test';
var status = 0;
var id = 2;
$.post("sys/class/admobButtonHandler.php"), { status: status, type: type, id: id};
}
</script>
<?php
require 'class.global.php';
$type = $_POST['type'];
$status = $_POST['status'];
$id = $_POST['id'];
setProfile($type, $status, $id);
?>
没有任何作品.. 还有其他方法可以让我的工作吗? 感谢
答案 0 :(得分:1)
查看post()函数的jQuery文档。 http://api.jquery.com/jquery.post/。你的语法都错了......它应该是:
$.post("/sys/class/admobButtonHandler.php", {status: status, type: type, id: id});