繁体   English   中英

点击按钮后页面重新加载

[英]Page reloads even after button click

我有3个html文件 - start.html,loginPage.html和dashboard.html。 单击登录按钮时,它应该加载仪表板,但我无法访问该按钮。

的start.html

<html>
<head>
    <meta http-equiv="Content-Security-Policy">
    <meta name="format-detection" content="telephone=no">
    <meta name="msapplication-tap-highlight" content="no">
    <meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width">
    <title>Amazon App</title>
</head>

<body onload="init()">
    <br><br>

    <div id='content'>
        <center><img src='img/splashlogo.png'/><center>
    </div>

    <script src="cordova.js"></script>
    <script src="js/jquery.min.js"></script>
    <script src="js/jquery.mobile.min.js"></script>
    <script src="require.js"></script>
    <script src="aws-sdk-2.1.34.min.js"></script>
    <script src="js/check.js"></script>
  </body>
 </html>

loginPage.html

<link rel="stylesheet" href="css/index.css"/>
<SCRIPT TYPE="text/javascript">
function setValues(){
    $("#accessKey").val('MY-ACCESS-KEY');
    $("#secretKey").val('MY-SECRET-KEY');
}
</SCRIPT>

 <div data-role="page" id="start" data-enhance="false" style = 'background: url(../img/BG.png);'>
<div data-role = "content">
    <br><br>
    <div align="right">
        <img src="./img/help-icon.png" onClick= "setValues()"/>
    </div>
   <div align = "center">
   <img src="./img/Logo login screen.png" height="200" width="170"/>
    </div>

    <br><br>
    <form id="loginForm" align = "center" data-ajax="false">
        <div id="user" align = "center">
            <input class="amazeFont" type="text" id = "accessKey" Placeholder="Access Key (20 characters)" size="30" maxlength="128" tabindex="1" autocomplete="on" autocorrect="off" autocapitalize="off" data-validation="[NOTEMPTY]"/>
        </div>
        <br><br>
        <div id = "pass" align = "center">
            <input class="amazeFont" type="password" id = "secretKey" Placeholder = "Secret Key (40 characters)" size="30" maxlength="1024" autocomplete="on" tabindex="2" data-validation="[NOTEMPTY]"/>
        </div>
        <br><br>
        <center><button type = "submit" id="submitButton" style='width: 80%; height: 40px; background-color: #f15a29; font-weight: bold; color: white; cursor: pointer;'>Login</button></center>
    </form>
   </div>
 </div>

 <script src="cordova.js"></script>
 <script src="js/jquery.min.js"></script>
 <script src="js/jquery.mobile.min.js"></script>
 <script src="require.js"></script>
 <script src="aws-sdk-2.1.34.min.js"></script>
 <script src="js/fun.js"></script>
 <script src="js/check.js"></script>

JS:

function init(){
   document.addEventListener("deviceReady", onDeviceReady,false);
}

function onDeviceReady(){
     window.location = 'loginPage.html';
     document.getElementById('submitButton').addEventListener("click", startApp,false); 

}

function startApp(){
    alert('switching page');
    window.location= 'dashboard.html';
}

登录页面不会切换到仪表板页面。它会重新加载。 没有捕获按钮单击。 我想让页面滑动。

编辑:

更新的js:

function init(){
   document.addEventListener("deviceReady", onDeviceReady,false);
 }

 function onDeviceReady(){
     window.location = 'loginPage.html';
 }

为loginPage.html创建了第二个js并将其添加到loginPage.html的主体

function init(){
    document.addEventListener('deviceReady', onDeviceReady, false);
 } 

function onDeviceReady(){
   document.getElementById('submitButton').addEventListener("click", startApp,false);
}

function startApp(){
//alert('switching page');
   window.location= 'dashboard.html';
}

未调用dashboard.html

您正在从start.html调用init()方法,其中onload调用function onDeviceReady()具有位置更改,因此其他页面加载。 您需要添加document.getElementById('submitButton').addEventListener("click", startApp,false); 当login.html.html(可能在不同的函数中)页面加载时,不是在start.html加载时。

希望能帮助到你。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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