答案 0 :(得分:0)
使用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