0

现在我在 img src 中获得了这条路径

<img alt="test" src="http://www.wsoradio.com/wp-content/uploads/http://www.wsoradio.com/wp-content/files/acbreviews/a4/B001THPA4Y/smallimage.jpg">

但我需要输出

<img alt="test" src="http://www.wsoradio.com/wp-content/files/acbreviews/a4/B001THPA4Y/smallimage.jpg">

我想通过 jquery在http://www.wsoradio.com/wp-content/files/acbreviews/a4/B001THPA4Y/smallimage.jpg之前从 img src 中删除这个额外的路径

http://www.wsoradio.com/wp-content/uploads/  (want to remove it)

请指导我怎么做,谢谢

4

1 回答 1

1

你不应该有 2 个网址,但如果你坚持:

$("img ").attr("src",$("img ").attr("src").split('http://www.wsoradio.com/wp-content/uploads/')[1])
于 2012-04-19T12:41:40.500 回答