我正在尝试在数据库中显示项目的详细信息,并允许管理员删除它们。
这是我到目前为止所拥有的:
<?php
include 'dbc.php';
$query=mysql_query("select * from pro1");
while($result=mysql_fetch_array($query)){
echo '<span>'.$result['name'].'</span>'.'<a href="#" id='.$result['pro_id'].' onclick="delet(this.id);">delet</a>'.'<br/>';
}
?>
<html>
<head>
</head>
<body>
<span>test10</span><a href="#" id=10 onclick="delet(this.id);">delet</a>
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
function delete(proid){
//alert(proid);
$.post("back.php",{
proid:proid
},function(data){
alert(data);
});
});//ready func end
</script>
</body>
</html>
我正在proid
从 db 获取...现在我需要使用 ajax 发送 id。循环输出将是这样的:
<span>test10</span>
<a href="#" id=10 onclick="delete(this.id);">delete</a>