href 取决于 ajax 成功或失败
在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 AJAX 回调中,
this
中有什么?它仍然是导致事件的因素吗?如果有,是哪个事件? AJAX 结果事件?我建议将
this
保存到局部变量中,以确保它包含您期望的内容: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:是的,您可以执行以下操作:
PHP:
希望这会有所帮助。干杯
Yes, you could do something like:
PHP:
Hope this helps. Cheers