我有一个html/php/javascript
代码,如下所示,它在网页上输出以下3个元素(如下所示的代码):
- 索引. php**:
<html>
<head> ABCDE </head>
<body>
<dl id="dl_<?php echo $row['attribute']; ?>"><a href="abcde.php?<?php echo 'id='.rawurlencode($row['attribute'])
.'&action='.rawurlencode($row['action'])
.'&name='.rawurlencode($row['map_value_name']); ?>">
<?php echo $row['attribute']; ?></a> (
<?php echo $row['owner']; ?>)
<button type="button" class="btn btn-danger"
onclick="deleteAttribute('<?php echo $row['attribute']; ?>')">Delete</button> <!-- Delete button -->
<dd><?php echo $row['description']; ?></dd>
</dl>
<!-- script -->
<script>
function deleteAttribute(attribute) {
console.log(attribute);
console.log('I am in attribute');
jQuery.ajax({
url: 'delete.php',
type: 'post',
data: 'attribute='+attribute,
success: function(result) {
jQuery('#dl_'+attribute).hide(500);
}
});
}
</script>
</body>
</html>
它打印:
早安
你好世界
晚上好
世界
午安
你好
上面代码(index.php
)中的echo $row['attribute'];
将打印第一行
上面代码(index.php
)中的echo $row['description'];
将打印第二行。
我正在使用下面的文件(delete.php)
从数据库中删除一个条目,点击网页上的删除按钮。
- 删除. php文件**
<?php
require 'connect.php';
$attribute = $_POST['attribute'];
$sql = "Delete from attributes where attribute='".$attribute."'";
$stmt = $con->prepare($sql);
$stmt->execute();
?>
- 问题陈述:**
点击上面index.php
文件中的删除按钮,我没有看到任何条目从网页和数据库中删除。
我想知道我需要在上面的delete.php
和index.php
文件中进行哪些更改,以便在单击删除按钮时,从网页和数据库中删除条目。
2条答案
按热度按时间lh80um4z1#
试试这个
delete.php
还需要修改中的deleteAttribute函数
index.php
vs91vp4v2#
id="dl_<?php echo $row['attribute']; ?>"
处使用class
代替id
。delete.php
。它可以是data:{attribute:attribute}
,然后,在成功中,您的代码可能如下所示:$('.dl_'+attribute).hide(500);
.在
delete.php
文件内,确保您获得来自上一页的属性,如果有您想要的属性,然后删除它。希望这能管用。