在GreaseMonkey脚本中实现"DOM Ready"事件,可以使用浏览器提供的原生事件监听器document.addEventListener
,并监听DOMContentLoaded
事件。以下是一个示例代码:
// ==UserScript==
// @name GreaseMonkey DOM Ready Example
// @namespace http://tampermonkey.net/
// @version 1.0
// @description A GreaseMonkey script that triggers an action when the DOM is ready
// @author Your Name
// @match *://*/* // 匹配所有网站
// @grant none
// ==/UserScript==
(function() {
'use strict';
// 当DOM加载完成时执行函数
document.addEventListener('DOMContentLoaded', function() {
// 在这里编写你的代码
console.log('DOM is ready!');
});
})();
这个示例代码中,我们使用了DOMContentLoaded
事件来监听DOM加载完成的事件。当事件触发时,我们执行了一个简单的console.log
操作。你可以根据需要编写自己的代码。
领取专属 10元无门槛券
手把手带您无忧上云