悬赏1油猫币已解决
最佳答案[md]https://docs.scriptcat.org/docs/dev/api/#gm_log-
```ts
declare function GM_log(message: string, level?: GM_Types.LoggerLevel): any;
declare namespace GM_Types {
type LoggerLevel = "debug" | "info" | "warn" | "error";
}
```
GM_log只能输出字符串,不能输出元素
你应该用
```js
GM_log(ele.textContent)
```[/md]
| ||
发表于
2024-12-6 00:27:38
|
显示全部楼层
| ||
发表于
2024-12-6 00:32:33
|
显示全部楼层
| ||
发表于
2024-12-6 00:35:22
|
显示全部楼层
| ||
发表于
2024-12-6 09:31:33
|
显示全部楼层
| ||