我在 iframe 中有一个链接,并x.com
通过中间 php 脚本将用户重定向到最终目的地。但是,我希望用户在将鼠标悬停在链接上时在其状态栏中看到最终目标链接。
我已经尝试了一切来改变window.status
(绝望地)但没有任何效果。到目前为止我已经尝试过:
<a onmouseover='window.top.status="x.com";return true;'....
<a onmouseover='window.parent.status="x.com";return true;'....
<a onmouseover='parent.window.status="x.com";return true;'....