Jquery 图像交换 onLoad
我想将一个类的一组图像的 src 更改为每个图像的标题属性。有没有更简单的方法来做到这一点?
<img src="" title="images/1.png" class="images" />
<img src="" title="images/2.png" class="images" />
<img src="" title="images/3.png" class="images" />
<img src="" title="images/4.png" class="images" />
<img src="" title="images/5.png" class="images" />
<script>
$(function(){
var newImage = $(this).attr('title')
$('.images').attr(src, ''+ newImage +'');
});
</script>
但这不能正常工作。
I want to change the src of a set of images of a class to each image's title attribute. Is there any easier way to do this?
<img src="" title="images/1.png" class="images" />
<img src="" title="images/2.png" class="images" />
<img src="" title="images/3.png" class="images" />
<img src="" title="images/4.png" class="images" />
<img src="" title="images/5.png" class="images" />
<script>
$(function(){
var newImage = $(this).attr('title')
$('.images').attr(src, ''+ newImage +'');
});
</script>
But this does not work correctly.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不会,因为您只是从第一张图像中获得标题。尝试这样的事情:
It wouldn't, because you're getting the title from just the first image. Try something like this:
这是一个简单的工作示例: http://jsfiddle.net/SwcYK/
Here is a simple working example: http://jsfiddle.net/SwcYK/