将图像属性更改为使用jquery

时间:2011-11-04 11:48:31

标签: jquery

我有一段代码,通过它我可以将输入标题更改为span。旁边是我的图像,虽然它被设置为显示隐藏。

<div class="field">
  <input type="text" name="email" class="w_def_text" id="email" title="Email*" />
  <img width="27" height="27" src="images/error.png" alt="Error">
</div>

我已经使用jquery将此倾斜更改为span。现在我发送模糊事件的输入值。

喜欢

$('#email').blur(function() {
var email = $('#email').val();
(1.)   $(this).next('img').show().html('<img width="80" height="27" src="images/dot.gif" >');
$.post('showuserstatus.php', {
    emailid: email
}, function(data) {
//$('#erroremail').show().html(data);
(2.)   $(this).next().next().html(data);

   });
});

在我希望更改图像的src的那一点,即发送响应时。并在收到回复后。

注意:我使用过.next.next,因为我介于两者之间。所以第二个是图像。

1 个答案:

答案 0 :(得分:5)

使用

$(".field img").attr("src", "images/dot.gif");