energy/example/execute-dev-tools-method/resources/execute-dev-tool-method.html
2023-07-02 15:57:07 +08:00

18 lines
555 B
Go

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>执行开发者工具方法</title>
<script type="application/javascript">
//按钮点击事件
function devMethod() {
//使用ipc.emit触发Go中监听的事件
ipc.emit("execute-dev-method");
}
</script>
</head>
<body style="overflow: hidden;margin: 0px;padding: 0px;">
<button style="margin: 50px 50px 50px 50px;" onclick="devMethod()">dev-method-仿真</button>
<a href="https://cn.bing.com/">bing</a>
</body>
</html>