跳到主要內容

發表文章

MKV以mkvtoolnix合併srt中文字幕的亂碼問題

打開mmg.exe 語言已經調成chi (chinese) 已經用ConvertZ轉碼試過big5/UTF-8都有亂碼Orz 解法: 格式特殊選項->字元集->UTF-8 (囧)

iOS childbrowser + phonegap2.2

2012-03-22 13:46:04.008 CordovaHybridDemo[106:707] CDVPlugin class ChildBrowserCommand (pluginName: ChildBrowserCommand) does not exist. 2012-03-22 13:46:04.009 CordovaHybridDemo[106:707] ERROR: Plugin 'ChildBrowserCommand' not found, or is not a CDVPlugin. Check your plugin mapping in Cordova.plist.   解法: For Cordova 2.3.0 you should modify config.xml because cordova.plist does no longer exist. Like: <plugins> <plugin name="ChildBrowser" value="ChildBrowser.js" /> <plugin name="ChildBrowserCommand" value="ChildBrowserCommand" /> … </plugins>

如何快速開啟WIndows資料夾的命令列模式(CMD)

按住Shift + 右鍵 就會出現開起該資料夾命令視窗 跟帥哥Honda.Dai學的    

HTML5 APP 不明錯誤 (Aandorid 2.3 手機 內建browser)

超難debug...更動每一行code錯誤訊息都會不一樣  因為犯了一個錯可能會出現下面的錯誤指令,而且js乍看之下都沒有問題 Uncaught SyntaxError: Unexpected token ILLEGAL  (第一行) 或 找不到dom的錯誤訊息 最後想到可能是localStorage 便查找所有相關的code if(!localStorage.data) 要改成 if(localStorage.data!=="") PS: 不是下面網址說的編碼錯誤字元問題  不過出錯的內容是一樣的~_~ http://stackoverflow.com/questions/12719859/syntaxerror-unexpected-token-illegal