在我的PHP + JavaScript項目中,我必須顯示圖像和一些然後有重音, 像〜ç和^。 我的網站沒有顯示這些圖像。 我知道有一個功能來對待這個,但我忘了。 有人可以幫助我嗎? 感謝的在圖像名稱口音
Q
在圖像名稱口音
1
A
回答
1
試圖通過rawurlencode()運行圖像的URL。
+0
它的作品....是我試圖記住這個功能。 其實我需要使用rawurldecode(),但幾乎一樣...它只是嘗試一個,然後在另一個= D 謝謝 – Paulo 2010-01-14 20:42:44
0
/* (C)Scripterlative.com
* Strips grave, acute, circumflex umlaut and tilde from vowels and Ñ.
*
* Include this script block, then within the tag of each text element to be controlled, insert:
*
* onblur='this.value=stripVowelAccent(this.value)'
*
* GratuityWare
* ~~~~~~~~~~~~
* You obtained this script probably out of desperation, so if you wish to express your gratitude for our efforts,
* please visit: www.scripterlative.com
*
*/
function stripVowelAccent(str)
{
var rExps=[
{re:/[\xC0-\xC6]/g, ch:'A'},
{re:/[\xE0-\xE6]/g, ch:'a'},
{re:/[\xC8-\xCB]/g, ch:'E'},
{re:/[\xE8-\xEB]/g, ch:'e'},
{re:/[\xCC-\xCF]/g, ch:'I'},
{re:/[\xEC-\xEF]/g, ch:'i'},
{re:/[\xD2-\xD6]/g, ch:'O'},
{re:/[\xF2-\xF6]/g, ch:'o'},
{re:/[\xD9-\xDC]/g, ch:'U'},
{re:/[\xF9-\xFC]/g, ch:'u'},
{re:/[\xD1]/g, ch:'N'},
{re:/[\xF1]/g, ch:'n'} ];
for(var i=0, len=rExps.length; i<len; i++)
str=str.replace(rExps[i].re, rExps[i].ch);
return str;
}
相關問題
- 1. 圖像的隨機圖像名稱
- 2. PHP preg_replace圖像名稱
- 3. Php圖像基本名稱
- 4. 不同的圖像名稱
- 5. 覆蓋名稱的圖像
- 6. 獲得圖像名稱CodeNameOne
- 7. 獨立的圖像名稱
- 8. Cocos2d-x Sprite圖像名稱
- 9. Android相機圖像名稱
- 10. 散列圖像名稱
- 11. 檢索圖像的名稱
- 12. 錯誤的圖像名稱?
- 13. 從foreach的圖像名稱
- 14. 如何在圖像視圖中顯示20個圖像名稱
- 15. 給予圖像隨機名稱在PHP
- 16. 在mysql中保存圖像名稱?
- 17. 在php中更改圖像名稱
- 18. 在容器中獲取圖像名稱
- 19. 圖像名稱和擴展名
- 20. PHP圖像上傳,設置圖像的名稱HTML輸入名稱=「」
- 21. 在視圖中訪問從ModelForm重命名的圖像名稱?
- 22. 如何通過圖像名稱在Xcode顯示圖像5
- 23. 在Excel中用圖像名稱替換圖像
- 24. 當選擇圖像名稱時在表單中顯示圖像
- 25. 在UIIMageView上設置圖像,其中圖像名稱來自xml
- 26. 點擊圖像和圖像的名稱顯示在jQuery
- 27. 如何在imageView中獲取圖像的圖像名稱?
- 28. 在「on the fly」中指定圖像名稱java圖像生成
- 29. 在xcode中查找包含圖像名稱的圖像
- 30. Android圖庫獲取圖像名稱
你的意思是如何輸出到屏幕上,或處理與他們的口音文件名? – Anthony 2010-01-14 20:26:36
當我嘗試獲取帶有重音的圖像的網址以顯示它在我的網站中時,由於名稱中的重音,圖像不會顯示。 沒有重音的圖像顯示正常。 – Paulo 2010-01-14 20:30:30