简体   繁体   中英

Redirecting to local html page from javascript in phonegap

I am working on phonegap application. I am trying to login and on click of the submit button in the Login.html i should be redirected to a local html file.

Login.html

<tr>
    <td>&nbsp;</td>
    <td>
        <input type="submit" class="submitbtn" name="submit"
            id="submit" value="Login" onclick="loginCheck()">
    </td>
</tr>

loginValidation.js

if (validCustomer == true) {

    alert("valid customer........");
    document.location.href("file:///android_asset/www/Category.html"); 

But document.location.href or window.location / window.open doesn't work. Can anybody help on this issue? If i use window.open and run the application in emulator it works fine but not in the device.

you can try this

window.open("mainpage.html",'_self');

this will open page in current window so that current window page data get flush and new page data will render in same window page dom.

尝试使用相对路径,这应该工作:

window.location="Category.html";

尝试这个

window.location.replace = "Category.html";
window.location.href = 'Category.html';

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM