作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在网络服务1中就像这样
"product_image1":"http://XYZ.co.uk/product_img/big/1_14238411703234.JPG" ,
"product_image2":"http://XYZ.co.uk/product_img/big/2_14238411703234.JPG" ,
"product_image3":"http://XYZ.co.uk/product_img/big/",
"product_image4":"http://XYZ.co.uk/product_img/big/",
在 webservice 2 中就像这样
"product_image1":"http://XYZ.co.uk/product_img/big/1_14303945253625.jpg" ,
"product_image2":"http://XYZ.co.uk/product_img/big/2_14303945253625.jpg" ,
"product_image3":"http://XYZ.co.uk/product_img/big/3_14303945253625.jpg",
"product_image4":"http://XYZ.co.uk/product_img/big/4_14303945253625.png",
我的代码:-
items+='<img id="slideImgId3" src='+item.product_image1+' class="detailShowBigImg">';
items+='<img src='+item.product_image1+' onclick="changeImage3(\''+item.product_image1+'\');" class="multiImgShow">';
items+='<img src='+item.product_image2+' onclick="changeImage3(\''+item.product_image2+'\');" class="multiImgShow">';
items+='<img src='+item.product_image3+' onclick="changeImage3(\''+item.product_image3+'\');" class="multiImgShow">';
<script type="text/javascript">
function changeImage3(img3)
{
document.getElementById("slideImgId3").src=img3;
}
</script>
你可以看到webservice 1和webservice 2。在webservice 1中,product_image3和product_image4没有图像,而在webservice 2中,所有对象图像都在那里,那么如何解决这个问题并使其动态。
最佳答案
尝试这组代码
var img = document.getElementById('imageid');
//or however you get a handle to the IMG
var width = img.clientWidth;
var height = img.clientHeight;
关于javascript - 如果图像存在于product_image 1到4 boject路径中,如何使用javascript获取长度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31153566/
我正在使用 redux-react-native-i18n用于本地化。 我遇到了这个错误 TypeError: undefined is not an object (evaluating '_ref
我是一名优秀的程序员,十分优秀!