使用没有CSS的jquery更改图像

时间:2012-05-29 06:39:38

标签: javascript jquery

作为网站结账过程的一部分,我可以编辑CSS来设置页面的样式,但是有一些链接是我想要更改的图像。

基本上我需要更改每个实例:

<img src="images/button.png">

中的页面

<img src="http://somewhereelse.com/images/newbutton.png">

此图像没有附加css ID或类,也无法添加一个。

这可以用JS或JQ完成吗?

2 个答案:

答案 0 :(得分:2)

使用jquery:

$('img[src=images/button.png]').attr('src','http://somewhereelse.com/images/newbutton.png');

祝你好运!

答案 1 :(得分:-1)

$('img').attr('src', 'http://somewhereelse.com/images/newbutton.png');

$('img[src=images/button.png]').attr(
'src', 'http://somewhereelse.com/images/newbutton.png'
);