local.html 3.6 KB
Newer Older
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
1 2
<!DOCTYPE html>
<html>
H
hdx 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>本地网页</title>
    <style type="text/css">
      .btn {
        display: block;
        margin: 20px auto;
        padding: 5px;
        background-color: #007aff;
        border: 0;
        color: #ffffff;
        height: 40px;
        width: 200px;
      }
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
18

H
hdx 已提交
19 20 21
      .btn-red {
        background-color: #dd524d;
      }
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
22

H
hdx 已提交
23 24 25 26 27 28 29 30 31 32 33 34 35 36
      .desc {
        padding: 10px;
        color: #999999;
      }
    </style>
  </head>
  <body>
    <p class="desc">web-view 组件加载本地 html 示例,仅在 App 环境下生效。点击下列按钮,跳转至其它页面。</p>
    <div class="btn-list">
      <button class="btn" type="button" data-action="navigateTo">navigateTo</button>
      <button class="btn" type="button" data-action="redirectTo">redirectTo</button>
      <button class="btn" type="button" data-action="navigateBack">navigateBack</button>
      <button class="btn" type="button" data-action="reLaunch">reLaunch</button>
      <button class="btn" type="button" data-action="switchTab">switchTab</button>
37
      <button class="btn" type="button" data-action="getEnv">getEnv</button>
H
hdx 已提交
38 39 40 41 42
    </div>
    <p class="desc">网页向应用发送消息。注意:小程序端应用会在此页面后退时接收到消息。</p>
    <div class="btn-list">
      <button class="btn btn-red" type="button" id="postMessage">postMessage</button>
    </div>
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
43 44 45 46 47 48
    <p class="desc">文件选择</p>
    <div style="padding: 0 10px;">
      <p style="font-size: 14px;">&lt;input type="file" /&gt;</p>
      <input type="file" />
      <p style="font-size: 14px;">&lt;input type="file" accept="image/*" multiple /&gt;</p>
      <input type="file" accept="image/*" multiple />
W
wanganxp 已提交
49 50
      <p style="font-size: 14px;">普通input</p>
      <input placeholder="底部输入框"/>
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
51
    </div>
H
hdx 已提交
52 53 54
    <!-- uni 的 SDK -->
    <script type="text/javascript" src="uni.webview.1.5.5.js"></script>
    <script type="text/javascript">
雪洛's avatar
雪洛 已提交
55
      const isWeb = location.href && /^https?:/.test(location.href)
H
hdx 已提交
56 57
      // document.addEventListener('UniAppJSBridgeReady', function() {
      document.querySelector('.btn-list').addEventListener('click', function(evt) {
雪洛's avatar
雪洛 已提交
58 59 60 61
        if(isWeb) {
          alert('web端暂不支持此功能')
          return
        }
H
hdx 已提交
62 63 64
        var target = evt.target;
        if (target.tagName === 'BUTTON') {
          var action = target.getAttribute('data-action');
W
微调  
wanganxp 已提交
65
          console.log(action);
H
hdx 已提交
66 67
          switch (action) {
            case 'switchTab':
68
              uni.webView.switchTab({
69
                url: '/pages/tabBar/API'
H
hdx 已提交
70 71 72
              });
              break;
            case 'reLaunch':
73
              uni.webView.reLaunch({
H
hdx 已提交
74 75 76 77
                url: '/pages/tabBar/component'
              });
              break;
            case 'navigateBack':
78
              uni.webView.navigateBack({
H
hdx 已提交
79 80 81
                delta: 1
              });
              break;
82
            case 'getEnv':
83
              uni.webView.getEnv((res) => {
84 85 86 87 88
                uni.postMessage({
                  data: res
                })
              });
              break;
H
hdx 已提交
89
            default:
90
              uni.webView[action]({
H
hdx 已提交
91 92 93 94 95 96 97 98
                url: '/pages/component/button/button'
              });
              break;
          }
        }
      })
      // });
      document.querySelector("#postMessage").addEventListener('click', function() {
雪洛's avatar
雪洛 已提交
99 100 101 102
        if(isWeb) {
          alert('web端暂不支持此功能')
          return
        }
103
        uni.webView.postMessage({
H
hdx 已提交
104 105 106
          data: {
            action: 'message'
          }
107
        })
H
hdx 已提交
108 109 110 111
      })
    </script>
  </body>
</html>