1.在父窗口中获取指定iframe(testiframe) id 为 testid 的class
代码如下 | 复制代码 |
$(window.frames["testiframe"].document).find("#testid").attr('class'); |
2.在IFRAME中获取父窗口中id为testid的class
代码如下 | 复制代码 |
$(window.parent.document).find("#testid").attr('class'); |
iframe框架的:
代码如下 | 复制代码 |
<iframe src="test.html" id="testiframe" width="700" height="300" frameborder="0" scrolling="auto"></iframe> |