如何从iframe中获取div到JS变量?不一定非要使用jQuery。

最佳答案

document.getElementById('IframeId').contentWindow.document.getElementById('DivId');

09-17 09:26