在jquery中的所有src标签上添加value属性

发布于 2024-11-07 10:19:40 字数 263 浏览 1 评论 0原文

我可以使用 jquery 在当前 html 页面中的所有 src 标签上添加一些 value 属性吗? 在这个 html 示例中:

<img src="images/slider/slide4.jpg" />

像这样:

<img src="http://www.website.com/images/slider/slide4.jpg" />

谢谢大家

can i adding some value attribute on all src tags in current html page with jquery ?
in example this html :

<img src="images/slider/slide4.jpg" />

to be like this :

<img src="http://www.website.com/images/slider/slide4.jpg" />

thanks guys

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

在你怀里撒娇 2024-11-14 10:19:40
$('img').each(function() {
    var newSrc = 'http://www.website.com/' + $(this).attr('src');
    $(this).attr('src', newSrc);
});

编辑:您不需要 each 循环,忽略以前的代码(保留它以供参考); attr 函数已经为您完成了!

$('img').attr('src', function() {
    return 'http://www.website.com/' + this.src;
});

请参阅此处中的最后一个示例。

$('img').each(function() {
    var newSrc = 'http://www.website.com/' + $(this).attr('src');
    $(this).attr('src', newSrc);
});

Edit: You don't need the each loop, ignore previous code (keeping it for reference); the attr function already does it for you!

$('img').attr('src', function() {
    return 'http://www.website.com/' + this.src;
});

See the last example in here.

谈情不如逗狗 2024-11-14 10:19:40

不确定是否有最短路线。

$('img').each(function() {
    $(this).attr('src', some_string + $(this).attr('src'));
});

Not sure if there is some shortest way.

$('img').each(function() {
    $(this).attr('src', some_string + $(this).attr('src'));
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文