访问iframe中的表

时间:2018-05-15 19:56:05

标签: javascript tampermonkey

我有一个网站,登录:cyclefreight1@usa.com pas:12345678,登录并转到驱动程序部分(左侧菜单栏第一项>驱动程序)我想用tampermonkey为这个网站做一些额外的功能。有关驱动程序的所有信息都包含在表格中,当您单击“转到当前日志”按钮enter image description here

时,可以获得有关当前驱动程序的信息。

我尝试将一些新功能添加到当前驱动程序部分 enter image description here 所有这些东西都在iframe中,所以我尝试对这个按钮做一个事件监听器

// @name         drivers
// @match        https://eldclient.trackingmap.eu/drivers*
// @grant        none
// @require http://code.jquery.com/jquery-1.12.4.min.js
// ==/UserScript==

setTimeout(() => {

    var el = document.getElementsByClassName("fa fa-file-text");
    console.log(el);
    el[1].addEventListener("click",console.log("yeah")) ;

}, 5000);

但它没有用,点击后我想从当前日志部分的表中获取所有元素。 在驱动程序部分,它适用于我

 **// @name         drivers
    // @match        https://eldclient.trackingmap.eu/drivers*
    // @grant        none
    // @require http://code.jquery.com/jquery-1.12.4.min.js
    // ==/UserScript==

    setTimeout(() => {
      const rows = document.querySelectorAll("#app table.table-component tr");
      console.log(rows);

    }, 5000);**

你有什么想法或提示,比你^)

0 个答案:

没有答案