下面是移动开发指南中关于相对路径的论述:
<使用相对路径
如果要使用相对路径,需要用到两个重要的符号,一个是表示网页所在的目录的".",一个是表示父目录的"..">
这里面说的网页所在目录是哪个目录?是项目的目录么?图片放到了项目目录下的images下为什么引用不到?怎么能看到.是哪个目录?
Case "", "default.htm" '首页
wb.AddPageTitle("","pageheader","销售系统","由湛江辉迅基于Foxtable开发")
With wb.AddGrid("","g1")
.Add("c1","增加订单", "./images/PNG001.png").Attribute = ""
.Add("c2","客户管理", "./images/PNG002.png", "http://www.foxtable.com")
.Add("c3","销售统计", "./images/PNG003.png", "http://www.foxtable.com")
.Add("c4","Dialog", "./images/PNG004.png", "http://www.foxtable.com")
.Add("c5","Progress", "./images/PNG005.png", "http://www.foxtable.com")
.Add("c6","Msg", "./images/msg.png", "http://www.foxtable.com")
.Add("c7","Article", "./images/article.png", "http://www.foxtable.com")
.Add("c8","ActionSheet", "./images/actionSheet.png", "http://www.foxtable.com")
.Add("c9","Icons", "./images/icons.png", "http://www.foxtable.com")
.Add("c10","Panel", "./images/panel.png", "http://www.foxtable.com")
.Add("c11","Tab", "./images/tab.png", "http://www.foxtable.com")
.Add("c12","退出", "./images/exit.png", "exit.htm") '退出登录
End With