我定义了以下函数,它将动态 id 作为参数传递给函数并输出到 html 链接。它调用的脚本会更新数据库记录并根据查询成功或未通过某些验证的 id 返回成功或失败警报。
function cancel_file(id){
jQuery.ajax({
type: "POST",
url: "https://www.mysite.com/cancel.php",
data: 'id='+ id,
cache: false,
success: function(response){
console.log(response);
if(response == 1){
alert('File successfully cancelled!');
}
}
error: function(response){
console.log(response);
if(response == "invalid_id"){
alert('The file ID format is invalid');
}else if(response == "no_record_found"){
alert('No file found with ID specified');
}
}
});
}
我在我的文档部分中调用它如下
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.7.1/jquery-ui.min.js"></script>
<script type="text/javascript" src="/js/jquery.js"></script>
页面上的链接是使用以下 php 代码输出的
<?php echo "<a href='#' onclick='cancel_file(".$id.")'>Cancel </a>"; ?>
单击链接时,没有任何反应,当我检查 Chrome JS 调试器控制台时,它显示“未捕获的 ReferenceError:cancel_file 未定义”。我做了一些阅读,在 document.ready() 中定义的函数被 Chrome 和 FF 忽略,所以我从顶部删除了该声明。我还是 jQuery 的新手,所以非常感谢任何帮助。
TIA
取消.php
<?php
// Get the fileid and make sure it's in a valid format
$id = $_POST['id'];
if(!ctype_digit($id)){
$response = "invalid_id";
}else{
// If validation passes proceed to queries and cancellation process
$q1 = "UPDATE `table_files` SET `is_invalid` = 1 WHERE `id` = '".$id."'";
$r1 = mysql_query($q1) or die(mysql_error());
if(mysql_affected_rows() > 0){
$response = mysql_affected_rows();
}else{
$response = "no_record_found";
}
echo $response;
?>
$response 应该传递回 jQuery 函数。