phonegap アプリでは、パラメーターを渡してローカル ページを呼び出すことはできません。これは、システムが渡したファイルとまったく同じ名前のファイルを検索するためです。パラメータをクエリ文字列として扱いません。
Ex: when you say "index.html?param=abc", instead of calling page index.html with a
parameter called param having value abc. It calls the page "index.html?param=abc"
which doesn't exist in the system. Hence, the error.
この問題を解決する最善の方法は、パラメーターを呼び出しページでローカル ストレージとして保存し、次のページで使用して破棄することです。
Ex: In your calling JavaScript file, use:
window.localStorage.setItem('param', 'abc');
Now, in your called file, access the local storage and delete it
param abc = window.localStorage.getItem('param');
window.localStorage.removeItem('param');
それが役立つことを願っています。