我得到了一个<img>
应该能够点击的用户(例如删除墙上的帖子)。每张图片都有imageid
与文章本身的 ID 相匹配的“”。现在我想imageid
通过 javascript/jQuery/whatever 将这个“”传递给我的delete.php
文件,在该文件中我将该 ID 发送到我的 Oracle 数据库以了解要删除的文章。
IMG 看起来像:
<img alt="Delete Article" src="include/images/delete.png" imageID="21" title="Delete Article">
和javascript:
$(document).ready(function erase() {
$("img[title='Delete Article']").click(function() {
if (confirm("Are you sure?")) {
var image = $(this).data('imageID');
$.ajax({
type: "POST",
url: 'include/site/delete.php',
data: 'imageID=' + image,
});
}
});
});
我只找到了创建隐藏表单标签并以这种方式发送它的方法,但我想以另一种方式来做(如果可能的话):)
提前致谢
找到解决方案!
$(document).ready(function () {
$("img[title='Delete Article']").click(function() {
if (confirm("Are you sure?")) {
var getimageID = $(this).attr('imageID');
$.post("include/site/delete.php", {
catchedID : "ID ist " + getimageID
});
}
});
});