gpt4 book ai didi

jquery - 将图像属性更改为使用jquery

转载 作者:行者123 更新时间:2023-12-01 06:56:47 24 4
gpt4 key购买 nike

我有一个代码块,通过它我可以将输入的标题更改为跨度。旁边是我的图像,但它被设置为显示隐藏。

<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 将此tiltle 更改为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 因为两者之间有跨度。接下来第二个是图像。

最佳答案

使用

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

关于jquery - 将图像属性更改为使用jquery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8008779/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com