C:\Users\daviti\Desktop\project
在这个文件夹中,我创建了简单的网站,其主页是索引html,这个网站被创建成3种不同的语言,格鲁吉亚语,俄语和英语,格鲁吉亚语变体直接在项目文件夹中,俄语和英语版本是放入俄语和英语文件夹,那些在主项目文件夹肯定,这些文件夹的名称是eng和russ.i我感兴趣的是我应该在链接上指示什么样的路径,以便我可以从英文版本移动到另一个版本,这里是georgian版本的子代码
<a href="eng/index.html"><img src ='english.gif' style="float:right" width="90" height="90"> </a>
<a href="russ/index.html"><img src ='russian.gif' alt="Russian flag" style="float:right" width="90" height="90"/></a>
<a href="index.html"> <img src="georgian.jpg" style="float:right" width="90" height="90"/></a>
正如你在三个变体中看到的那样,主页的名称是index.html,只是文件夹不同,这对于georgian版本很好,但是这个
<a href="eng/index.html"><img src ='english.gif' style="float:right" width="30" height="30"> </a>
<a href="russ/index.html"><img src ='russian.gif' alt="Russian flag" style="float:right" width="30" height="30"/></a>
<a href="index.html"> <img src="georgian.jpg" style="float:right" width="30" height="30"/></a>
来自英文版本不起作用,例如俄罗斯链接,也来自俄文版
<a href="eng/index.html"><img src ='english.gif' style="float:right" width="30" height="30"> </a>
<a href="russ/index.html"><img src ='russian.gif' alt="Russian flag" style="float:right" width="30" height="30"/></a>
<a href="index.html"> <img src="georgian.jpg" style="float:right" width="30" height="30"/></a>
请帮我解决这个问题
答案 0 :(得分:2)
好的,让我理解......你有3个“index.html”文件:一个在C:\ Users \ daviti \ Desktop \ project中,第二个在C:\ Users \ daviti \ Desktop \ project \ eng文件夹和C:\ Users \ daviti \ Desktop \ project \ russ文件夹中的第三个文件夹?
在这种情况下,请尝试此解决方案:
在您的格鲁吉亚索引页面中写下:
<a href="eng/index.html"><img src ='english.gif' style="float:right" width="90" height="90"> </a>
<a href="russ/index.html"><img src ='russian.gif' alt="Russian flag" style="float:right" width="90" height="90"/></a>
<a href="index.html"> <img src="georgian.jpg" style="float:right" width="90" height="90"/></a>
在您的英文索引页面中写下:
<a href="index.html"><img src ='english.gif' style="float:right" width="30" height="30"> </a>
<a href="../russ/index.html"><img src ='russian.gif' alt="Russian flag" style="float:right" width="30" height="30"/></a>
<a href="../index.html"> <img src="georgian.jpg" style="float:right" width="30" height="30"/></a>
在您的俄语索引页面中写下:
<a href="../eng/index.html"><img src ='english.gif' style="float:right" width="30" height="30"> </a>
<a href="index.html"><img src ='russian.gif' alt="Russian flag" style="float:right" width="30" height="30"/></a>
<a href="../index.html"> <img src="georgian.jpg" style="float:right" width="30" height="30"/></a>