我有类似 src 的 iframe http://remote-domain.com/
,当 src 发生更改时,我需要触发类似的函数iframeSrcChanged()
<iframe id="iframe" src="http://remote-domain.com/" frameborder="0" width="100%" height="100%" ></iframe>
当用户在 iframe 中单击 about-us 时,iframe src 变为
<iframe id="iframe" src="http://remote-domain.com/about-us.html" frameborder="0" width="100%" height="100%" ></iframe>
所以这次我需要触发iframeSrcChanged()
功能。
请帮我触发这个问题。