作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有人能看出这有什么问题吗?当图像不符合我的要求时,它会停止图像更改,但当图像出现时,它不会一直更改图像!
干杯,肖恩
var myFile = "/_images/multi/" + productCode + "/" + imgCodeAlt + "_l.jpg";
if (myFile.exists()) {
$("#imgMain img").attr({
rel: 'lightbox',
src: "/_images/multi/" + productCode + "/" + imgCodeAlt + "_l.jpg"
});
}
最佳答案
如果您像这样定义exists
,您的代码将起作用:
String.prototype.exists = function() {
var a = new XMLHttpRequest;
a.open( "GET", this+"", false );
a.send( null );
return a.status === 200;
};
"/".exists() //true
关于php - IF 文件存在 JavaScript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11611134/
我是一名优秀的程序员,十分优秀!