嗨,大家好,我正在尋求重寫圖像路徑的幫助。如何重寫圖像路徑
讓我解釋一下.....
比方說,我正在2個應用程序。 APP-A和APP-B。我的APP-A安裝了一個插件,以純HTML格式生成菜單輸出並保存爲HTML文件。
我現在想將這個HTML文件導入到我的APP = B中,並將它用作它的菜單。 HTML文件使用require_once('../../app-a/menu.html');
文件看起來是這樣的.....
<div class="menu">
<li class="item27 parent root" >
<a class="daddy item image subtext" href="/xyz/cms/index.php>
<span>
<img src="tmpl/abc_template/images/icons/icon.png" alt="icon1.png" />
Link 1 <em>subline</em>
</span>
</a>
</li>
<li class="item27 parent root" >
<a class="daddy item image subtext" href="/xyz/cms/index2.php>
<span>
<img src="tmpl/abc_template/images/icons/icon.png" alt="icon2.png" />
Link 2 <em>subline</em>
</span>
</a>
</li>
<li class="item27 parent root" >
<a class="daddy item image subtext" href="/xyz/cms/index3.php>
<span>
<img src="templ/abc_template/images/icons/icon.png" alt="icon3.png" />
Link 3 <em>subline</em>
</span>
</a>
</li>
</div>
我導入此文件到我的APP-B快到了罰款,但我有成像路徑問題。這些路徑是相對於APP-A生成的,我想改變它們,以便我的APP-B從正確的位置獲取它們。
例如,在我導入APP-B文件,
我想我的APP-B讀取圖像路徑前加上../../使這些路徑:
<img src="tmpl/abc_template/images/icons/icon.png" alt="icon1.png" />
<img src="tmpl/abc_template/images/icons/icon.png" alt="icon2.png" />
<img src="tmpl/abc_template/images/icons/icon.png" alt="icon3.png" />
變得像這些路徑
<img src="../../tmpl/abc_template/images/icons/icon.png" alt="icon1.png" />
<img src="../../tmpl/abc_template/images/icons/icon.png" alt="icon2.png" />
<img src="../../tmpl/abc_template/images/icons/icon.png" alt="icon3.png" />
請幫助。我正在使用支持jQuery的模板。因此,即使是jQuery解決方案也可以。
APP-A插件是一個純php腳本嗎?你不能更新? – ajreal 2010-12-17 19:46:37