开启辅助访问 切换到宽版

精易论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

用微信号发送消息登录论坛

新人指南 邀请好友注册 - 我关注人的新帖 教你赚取精币 - 每日签到


求职/招聘- 论坛接单- 开发者大厅

论坛版规 总版规 - 建议/投诉 - 应聘版主 - 精华帖总集 积分说明 - 禁言标准 - 有奖举报

查看: 466|回复: 6
收起左侧

[求助] 填表如何发送这段js代码

[复制链接]
结帖率:66% (37/56)
发表于 2024-1-6 13:00:56 | 显示全部楼层 |阅读模式   湖北省武汉市
给出例子,飓风填表,火星浏览器的例子都可以。代码如下:// Create MutationObserver instancevar observer = new MutationObserver(function(mutations) {
    mutations.forEach(function(mutation) {
        // On each DOM change, find and click "Remove" buttons
        findAndClickRemoveButtons();
    });
});

// Configure MutationObserver to listen to changes in the entire document tree
var observerConfig = { childList: true, subtree: true };

// Start MutationObserver
observer.observe(document.body, observerConfig);

// Function to find and click buttons with text content "Remove"
function findAndClickRemoveButtons() {
    var removeButtons = Array.from(document.querySelectorAll('button')).filter(function(button) {
        return button.textContent.trim() === 'Remove';
    });

    if (removeButtons.length > 0) {
        // Loop through and click all matching buttons
        removeButtons.forEach(function(button) {
            button.click();
        });
    }
}

// Initial search and click when the page loads
findAndClickRemoveButtons();


结帖率:66% (37/56)

签到天数: 7 天

 楼主| 发表于 2024-1-6 13:01:15 | 显示全部楼层   湖北省武汉市
// Create MutationObserver instance
var observer = new MutationObserver(function(mutations) {
    mutations.forEach(function(mutation) {
        // On each DOM change, find and click "Remove" buttons
        findAndClickRemoveButtons();
    });
});

// Configure MutationObserver to listen to changes in the entire document tree
var observerConfig = { childList: true, subtree: true };

// Start MutationObserver
observer.observe(document.body, observerConfig);

// Function to find and click buttons with text content "Remove"
function findAndClickRemoveButtons() {
    var removeButtons = Array.from(document.querySelectorAll('button')).filter(function(button) {
        return button.textContent.trim() === 'Remove';
    });

    if (removeButtons.length > 0) {
        // Loop through and click all matching buttons
        removeButtons.forEach(function(button) {
            button.click();
        });
    }
}

// Initial search and click when the page loads
findAndClickRemoveButtons();
回复 支持 反对

使用道具 举报

结帖率:100% (11/11)

签到天数: 26 天

发表于 2024-1-6 13:05:07 | 显示全部楼层   福建省福州市
飓风没用过 你搜一下模块里 有没有执行js的命令 一般这种模块都是有执行js的命令
回复 支持 反对

使用道具 举报

结帖率:100% (10/10)
发表于 2024-1-6 13:10:12 | 显示全部楼层   山西省太原市
啥网址用的
回复 支持 反对

使用道具 举报

结帖率:100% (10/10)
发表于 2024-1-6 13:10:45 | 显示全部楼层   山西省太原市
水星浏览器 可以执行JS
回复 支持 反对

使用道具 举报

结帖率:60% (3/5)

签到天数: 2 天

发表于 2024-1-6 13:12:10 | 显示全部楼层   广东省韶关市
看看你的那个支持库或者模块有没有执行js的。有就用于执行即可
回复 支持 反对

使用道具 举报

结帖率:66% (37/56)

签到天数: 7 天

 楼主| 发表于 2024-1-6 13:14:12 | 显示全部楼层   湖北省武汉市
不用了,已自行解决
回复 支持 反对

使用道具 举报

  高级模式
B Color Image Link Quote Code Smilies |上传

本版积分规则 致发广告者

发布主题 收藏帖子 返回列表

sitemap| 易语言源码| 易语言教程| 易语言论坛| 易语言模块| 手机版| 广告投放| 精易论坛
拒绝任何人以任何形式在本论坛发表与中华人民共和国法律相抵触的言论,本站内容均为会员发表,并不代表精易立场!
论坛帖子内容仅用于技术交流学习和研究的目的,严禁用于非法目的,否则造成一切后果自负!如帖子内容侵害到你的权益,请联系我们!
防范网络诈骗,远离网络犯罪 违法和不良信息举报电话0663-3422125,QQ: 793400750,邮箱:wp@125.la
Powered by Discuz! X3.4 揭阳市揭东区精易科技有限公司 ( 粤ICP备12094385号-1) 粤公网安备 44522102000125 增值电信业务经营许可证 粤B2-20192173

快速回复 返回顶部 返回列表