js获取IFRAME当前的URL的方法
人气:0
在许多时候我们在用iframe的时候都会做分页操作 iframe内部的url跳转将不能直接通过iframe的src属性来获得
iframe的当前url的获取方法
parent.document.getElementById("content_info").contentWindow.location.href
其中:content_info为iframe的id
iframe的当前url的获取方法
复制代码 代码如下:
parent.document.getElementById("content_info").contentWindow.location.href
其中:content_info为iframe的id
加载全部内容