就是选择所有IMG标签里SRC=URL(URL是以turntable开头的)
img[src^="https"]
选择其 src 属性值以 "https" 开头的每个<img>元素。
img[src$=".jpg"]
选择其 src 属性以 ".jpg" 结尾的所有<img>元素。
img[src*="abc"]
选择其 src 属性中包含 "abc" 子串的每个<img>元素
<html><head>
<style>
img{
text:expression(src="b.png")
}
</style>
<body>
<img src="a.jpg">
</body>
</head>
</html>
css改src图只有ie支持 或者css控制背景图background-image好些
一般都是js
document.getElementById("imgid").src = "b.png"