gpt4 book ai didi

php - IF 文件存在 JavaScript

转载 作者:行者123 更新时间:2023-11-28 20:58:36 24 4
gpt4 key购买 nike

有人能看出这有什么问题吗?当图像不符合我的要求时,它会停止图像更改,但当图像出现时,它不会一直更改图像!

干杯,肖恩

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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com