如何能做到当用户点击超链接时,不让用户看到IE下面显示的实际url地址?
或是,有没有办法绝对不暴露超链接的 url 给用户,包括右键,属性,这样也看不到
------解决方案--------------------------------------------------------
urlrewrite
------解决方案--------------------------------------------------------
完全隐藏是不可能.url重写也只是将url换个不同一般的地址.
------解决方案--------------------------------------------------------
<A onclick= "javascript:GoUrl( 'aa.aspx '); "> 内容 </a> <script> function GoUrl(url) { window.location.href= url; } </script>
------解决方案--------------------------------------------------------
window.top.PageFrame.location.href= url