以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- [求助]移动开发中网页所在目录指的是哪? (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=96897) |
-- 作者:新福星 -- 发布时间:2017/3/2 5:37:00 -- [求助]移动开发中网页所在目录指的是哪? 下面是移动开发指南中关于相对路径的论述: <使用相对路径 如果要使用相对路径,需要用到两个重要的符号,一个是表示网页所在的目录的".",一个是表示父目录的".."> 这里面说的网页所在目录是哪个目录?是项目的目录么?图片放到了项目目录下的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 |
-- 作者:狐狸爸爸 -- 发布时间:2017/3/2 7:45:00 -- 第一行代码决定: Dim fl As String = "d:\\web\\" & e.path 一般实用绝对路径就行了,例如图片在d:\\web\\images目录下,那么网页中引用此图片的路径为: /images/PNG001.png
[此贴子已经被作者于2017/3/2 7:47:01编辑过]
|
-- 作者:新福星 -- 发布时间:2017/3/2 8:15:00 -- 谢谢狐爸亲自解答。图片大小、插入Grid(网格)的大小可调么? |
-- 作者:有点蓝 -- 发布时间:2017/3/2 8:45:00 -- 调不了 |