Writing /volume1/Web/Public/dokuwiki/data/log/deprecated/2024-11-15.log failed
文書の過去の版を表示しています。
Writing /volume1/Web/Public/dokuwiki/data/log/deprecated/2024-11-15.log failed
Display error messages of javascript
以下のコードを入れるとjavascriptコードの何行目でエラーが起こったか分かる。 ちなみに、FirefoxのFirebugというaddonを設置すると、とてもデバッグがやりやすいので、ぜひ試してみよう。
onerror=handleErr; var txt=""; //debug function function handleErr(msg,url,l) { txt="There was an error on this page.\n\n"; txt+="Error: " + msg + "\n"; txt+="URL: " + url + "\n"; txt+="Line: " + l + "\n\n"; txt+="Click OK to continue.\n\n"; alert(txt); return true; }