Navigate from one page to another: Jump between pages in Cordova iOS
P粉066224086
P粉066224086 2023-09-14 17:48:20
0
1
437

I'm very new to iOS Cordova right now and I'm struggling to navigate from one page to another. I just need to know how a page works where there is a button called click and if I click on that button it should go to the next page. It is as simple as we create navigation view controller in iOS.

P粉066224086
P粉066224086

reply all(1)
P粉364642019
<script type="text/javascript">
          document.getElementById("login").onclick = function () {
           window.location.href = "addProduct.html";
          };
        </script>

This way you can navigate from one page to another.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!