新建一个文件夹,跟之前一样,在 Vscode 终端里输入 yarn create electron-app Drag
。
首先也是按照之前的方法去创建 js 和 js 文件夹下的 render.js
。
在 index.js 中的 webPreferences
添加:
红框中的代码是 html 支持 webview。webview 其实是嵌入式一个网页,让我们可以进行修改、操作等。
在 index.html
里添加:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Hello World!</title>
<link rel="stylesheet" href="index.css" />
</head>
<body>
<h1>
标签:console,log,05,js,querySelector,操作,webview,document
From: https://www.cnblogs.com/toutiegongzhu/p/17722453.html