通过javascript在Android浏览器中启动应用程序

时间:2015-03-12 12:20:13

标签: javascript android deep-linking android-deep-link

我正在尝试在Android浏览器中启动我的应用。如果计时器调用方法start(),则会显示断开的链接。如果按下该按钮,start()将运行该应用程序。拜托,你能帮助我吗?

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
  <head>
    <title>Test page</title>
  </head>
  <body>
        <button onclick="start()">Button</button>
  <script>
      setTimeout(function() {
          start();
      }, 3000);
      function start() {
          window.open("http://com.xxx/xxx-services/user/reset-password/12345", "_self")
      }
  </script>
  </body>
</html>

0 个答案:

没有答案