24 lines
601 B
HTML
24 lines
601 B
HTML
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>test</title>
|
|
</head>
|
|
<body>
|
|
<button onclick="sendToBehavior()">xxx</button>
|
|
<button onclick="testBridge()">xxx</button>
|
|
|
|
<script>
|
|
function sendToBehavior() {
|
|
window.postMessage(JSON.stringify({
|
|
code: 1, message: 'from web'
|
|
}));
|
|
}
|
|
function testBridge() {
|
|
console.log(window.bridge)
|
|
}
|
|
window.addEventListener('message', e => {
|
|
console.log('on-message', e)
|
|
})
|
|
</script>
|
|
</body>
|
|
</html> |