Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
PhoneGap は内部リンクを開くことができません。html で href タグを使用していますが、Web ページを読み込めません。phonegap で 1 つの html ページを別の html ページにリダイレクトする方法を誰か提案できますか?
これを試すことができます。
コード ::
HTML
<a href="javascript:goToNext()">Next Page</a>
Javascript
<script type="text/javascript"> function goToNext() { window.location.href = './NextPage.html'; } </script>
うまくいけば、これは新しいページに移動するのに役立ちます.
ありがとう。