test.html
660 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>
<button onclick="getDeviceInfoSync()">获取当前设备信息</button>
<button onclick="setStorageSync()">设置本地缓存</button>
<button onclick="getStorageSync()">获取本地缓存</button>
<button onclick="chooseImage()">选择图片</button>
<a href="/test/test2.html">跳转测试2</a>
<br>
<img src="" alt="test" id=testImg>
<script src="/test/test.js"></script>
</body>
</html>