我想知道我是否有一个包含多个页面的页面,iFrames
如果我通过修改 iFramesrc
属性进行通信,是否可以在 src 属性上设置 hashChange 侦听器。
当然,这必须在 iFrame 代码中,但试试这个:
$(document).ready(function () {
console.log(window);
$(window).on('hashchange', function() {
console.log("IFRAME HASH CHANGED");
});
});
不会触发任何东西。
问题:
知道这是否可能吗?如果没有,还能怎么做?
感谢您的投入!