删除与按钮关联的图像

时间:2015-07-06 08:21:04

标签: javascript jquery html5

我正在开发一个应用程序,有人可以从库中选择多个图像。我已经为每个调用该功能的图像添加了一个按钮。如何删除附加按钮onclick的图像?

<div id="images">
    <img src="www.xyz.com/qwert.jpg" class="hi">
    <input type="button" class="multiple">
    <img src="www.xyz.com/qwerty.jpg" class="hi">
    <input type="button" class="multiple">
    <img src="www.xyz.com/qwertww.jpg" class="hi">
    <input type="button" class="multiple">
</div>

1 个答案:

答案 0 :(得分:2)

您可以使用此代码:

$result3 = mysql_query("SELECT * FROM members where user='$user'");

<强>段

$(".multiple").click(function () {
  $(this).prev("img").remove();
});
$(function () {
  $(".multiple").click(function () {
    $(this).prev("img").remove();
  });
})