我对响应式设计和图像有疑问。
这个javascript会导致浏览器同时加载“small.jpg”和“big.jpg”吗?
if (condition1) {
//with jQuery im setting the source for the img tag
$(this).attr('src', 'small.jpg');
} else if (condition2) {
//with jQuery im setting the source for the img tag
$(this).attr('src', 'big.jpg');
}
亲切的问候
答案 0 :(得分:0)
这不会加载两个图像。如果满足第一个条件,由于else if
,第二个条件将无法获得机会。
答案 1 :(得分:-1)
视情况而定,但它应该可以解决问题。