2

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

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

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

在页面内

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

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

这可以用JS或JQ完成吗?

4

2 回答 2

2

使用 jquery:

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

祝你好运!

于 2012-05-29T06:41:44.773 回答
-1
$('img').attr('src', 'http://somewhereelse.com/images/newbutton.png');

或者

$('img[src=images/button.png]').attr(
'src', 'http://somewhereelse.com/images/newbutton.png'
);
于 2012-05-29T06:41:50.833 回答