href 取决于 ajax 成功或失败

发布于 2024-11-18 23:47:10 字数 1002 浏览 2 评论 0原文

在我的 WordPress 中,我将自定义附件大小设置为 128x79 和 896x277。我的图像肯定会大于 128x79。如果图像小于 896x277,它会裁剪掉大于最大尺寸的部分,并将另一个设置为其最大值。这意味着 500x300 的图像将被裁剪为 500x277。

假设我的页面上有一个带有 href http://domain.com/files-128x79.jpg 的图像,我想将 files-128x79.jpg 替换为 < code>files-896x277.jpg 如果存在,否则优先查找高度最大的图片。

好吧...我决定简化我的问题以使其更容易。我现在要做的就是检查 files-896x277.jpg 是否存在,如果不存在,我希望它输出 files.jpg 。到目前为止我已经得到了这个,但似乎无法设置锚点 href。

$rewrite.find('a').each(function(index, element) {
    $.ajax({
        url : $(this).children().attr('src').replace('-128x79.', '-896x277.'),
        type: 'head',
        success : function() {
                $(this).attr('href', $(this).children().attr('src').replace('-128x79.', '-896x277.'));
        },
        error : function(xhr, d, e) {
            if (xhr.status == 404) {
                $(this).attr('href', $(this).children().attr('src').replace('-128x79.', '.'));
            }
        }
    });
});

我做错了什么?

In my Wordpress, I have custom attachment sizes set at 128x79 and 896x277. My images will for sure be larger than 128x79. If the image is smaller than 896x277, it crops off whatever is larger than the max size and sets the other to its max. Meaning an image of 500x300 will be cropped to 500x277.

Lets say on my page I have an image with href http://domain.com/files-128x79.jpg and I want to replace files-128x79.jpg with files-896x277.jpg if it exists, otherwise, find the largest image with height as priority.

Ok... I've decided to simplify my problem to make it easier. All I'm doing now is to check if files-896x277.jpg exists and if not, I want it to output files.jpg instead. I've got this so far, but can't seem to set the anchor href.

$rewrite.find('a').each(function(index, element) {
    $.ajax({
        url : $(this).children().attr('src').replace('-128x79.', '-896x277.'),
        type: 'head',
        success : function() {
                $(this).attr('href', $(this).children().attr('src').replace('-128x79.', '-896x277.'));
        },
        error : function(xhr, d, e) {
            if (xhr.status == 404) {
                $(this).attr('href', $(this).children().attr('src').replace('-128x79.', '.'));
            }
        }
    });
});

What am I doing wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

时光礼记 2024-11-25 23:47:10

在 AJAX 回调中,this 中有什么?它仍然是导致事件的因素吗?如果有,是哪个事件? AJAX 结果事件?

我建议将 this 保存到局部变量中,以确保它包含您期望的内容:

$(function () {
    var that = $(this);
    $.ajax({
    url : that.children()....

Inside the AJAX callback, what is in this? Is it still the element which caused the event? If so, which event? The AJAX result event?

I suggest to save this to a local variable to make sure it contains what you expect:

$(function () {
    var that = $(this);
    $.ajax({
    url : that.children()....
从此见与不见 2024-11-25 23:47:10

是的,您可以执行以下操作:

var image = 'files-128x79.jpg';
$(function () {
    $.ajax({
        url : 'search_images.php',
        success : function(filelist) {
            //YOu have the filelist in a string. Just parse it to find the image
            ...
            var imageExists = (filelist.indexOf(image) >= 0); //Search the image
            if (!imageExists ) {
                alert('The image was not found');
            }
        },
    });
});

PHP:

search_images.php (linux)
echo `ls /images/files-*.jpg`; //This will list all the images in your directory

希望这会有所帮助。干杯

Yes, you could do something like:

var image = 'files-128x79.jpg';
$(function () {
    $.ajax({
        url : 'search_images.php',
        success : function(filelist) {
            //YOu have the filelist in a string. Just parse it to find the image
            ...
            var imageExists = (filelist.indexOf(image) >= 0); //Search the image
            if (!imageExists ) {
                alert('The image was not found');
            }
        },
    });
});

PHP:

search_images.php (linux)
echo `ls /images/files-*.jpg`; //This will list all the images in your directory

Hope this helps. Cheers

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文