【发布时间】:2019-08-03 16:17:07
【问题描述】:
【问题讨论】:
-
您的元素在 iframe 中,请在此处查看 stackoverflow.com/questions/1088544/…
-
我之前试过了,但还是不行。
标签: javascript jquery
【问题讨论】:
标签: javascript jquery
使用iframe.contentDocument 或iframe.contentWindow.document:
var iframe = document.getElementById("tidio-chat-iframe");
var iframeDocument = iframe.contentDocument || iframe.contentWindow.document;
var myDiv = iframeDocument.querySelector(".frame-content");
//Do something with myDiv
【讨论】: