我正在尝试更改img标记的属性,但它无法正常工作,我不知道为什么。我的代码正在更改BIG img源代码和ZOOM源代码,但代码只更改了源代码而不是ZOOM代码,这里是我的代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<script src='jquery-1.8.3.min.js'></script>
<script src='jquery.elevatezoom.js'></script>
<!--script src='jquery-1.8.3.min.js'></script-->
<script>
function colorImage(x){
var newsrc = x.src.replace("thumb", "large");
var d = document.getElementById("zoom_06_l");
d.src = newsrc;
d.setAttribute("data-zoom-image", newsrc);
}
</script>
</head>
<style>
a{
color:black;
text-decoration:none;
}
.element{
width:150px;
}
.element .code {
text-align:center;
padding:10px;
}
</style>
<body>
<div style="width:960px;margin:0 auto;">
<img id="zoom_06_l" src="large/001.jpg" width="960" data-zoom-image="large/001.jpg"/>
<div id="gallery">
<a href="#" data-image="large/001.jpg" data-zoom-image="large/001.jpg">
<div class="element" style="float:left;margin-right:5px;">
<img id="zoom_06" src="thumb/001.png" /><br>
<div class="code">דגם מספר : 0025</div>
</div>
</a>
<a href="#" data-image="large/30001.png" data-zoom-image="large/30001.png">
<div class="element" style="float:left;margin-right:5px;">
<img onclick="javascript:colorImage(this)" id="zoom_06" src="thumb/30001.png" /><br>
<div class="code">דגם מספר : 30001</div>
</div>
</a>
</div>
</div>
<script>
$("#zoom_06_l").elevateZoom({
zoomType : "lens",
lensShape : "round",
lensSize : 250
});
</script>
</body>
</html>
id为zoom_06_l的img的数据缩放图像没有变化,我不知道为什么。
有什么帮助吗?
答案 0 :(得分:0)
取代
d.setAttribute("data-zoom-image", newsrc);
尝试使用此
d.dataset.zoomImage = newsrc;
详情请参阅
“https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Using_data_attributes”