test.html 859 Bytes
<!DOCTYPE html>
<html>
<head>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>WebView Communication</title>
</head>
<body>
<h2>接口测试</h2>

<div id="resp"></div>

<button onclick="clearResp()">清除响应数据</button>

<br>
<br>
<button onclick="getDeviceInfoSync()">获取当前设备信息</button>

<br>
<br>

<button onclick="setStorageSync()">设置本地缓存</button>
<button onclick="getStorageSync()">获取本地缓存</button>
<button onclick="clearStorageSync()">清空本地缓存</button>

<br>
<br>
<button onclick="chooseImage()">选择单个图片</button>
<button onclick="chooseMultipleImage()">选择多个图片</button>

<br>
<br>
<a href="/test/test2.html">跳转测试2</a>
<br>
<br>
<a href="/index.html">iOS跳转</a>

<br>
<br>

<script src="/test/test.js"></script>


</body>
</html>