获取iframe的src属性:
ie下面可以这样获取:
document.frames("adminiframe").location.href;
但火狐下面不支持上述写法,可以用下面的获取该属性,支持ie和火狐
var url = document.getElementById("adminiframe").contentWindow.location.href;
获取iframe的src属性:
ie下面可以这样获取:
document.frames("adminiframe").location.href;
但火狐下面不支持上述写法,可以用下面的获取该属性,支持ie和火狐
var url = document.getElementById("adminiframe").contentWindow.location.href;