我正在努力完成这项工作,我有一些图像,每个图像都有这个带有自己 ID 的链接。
这是链接:<a href="#" class="remove_img" data-id="'.$img->g_id.'">x</a>
这是脚本:
<script>
$(document).ready(function() {
$(".remove_img").click(function() {
e.preventDefault();
var id = $this.data('id');
$.ajax({
url: 'remove_img.php',
type: 'POST',
data: { bild : id },
success: function(data) {
alert("Gespeichert!");
}
});
});
});
</script>
我在 remove_img.php 中收到这样的 ID:$_POST['bild']
在 chrome 控制台中,我看到此错误:
$this 未定义(重复 2 次)