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粉3646420192023-09-15 11:11:30
<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.