两种获得iframe内元素的方法
jquery获取
$("#atrDialogIframe_protocoliframe").contents().find(‘span‘).text()
JS原生获取
document.getElementById("atrDialogIframe_protocoliframe").contentWindow.document.getElementById("span")
iframe调用上级窗口的JS
window.parent.上级方法;
时间: 2024-10-10 16:26:04