mirror of
https://gitee.com/energye/energy.git
synced 2024-12-15 18:01:52 +08:00
18 lines
555 B
Go
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> |