如果西班牙语站点图像不存在,如何加载英文站点图像

时间:2009-05-14 18:01:26

标签: javascript html ajax image web

我有一个多语言网站。使用html,javascript,如果西班牙文件夹中不存在图像,则可能是ajax,它应该从英文文件夹中加载图像。

路径示例 english site:images / home.jpg 西班牙语网站:es / images / home.jpg

今天我有了message.properties ......用于进行文本转换的东西 message.properties message_es.properties

1 个答案:

答案 0 :(得分:4)

您可以对图像使用onerror

<img src="es/images/home.jpg" onerror="this.src='images/home.jpg'">

但是,恕我直言,最好在服务器端完成这项工作