-1
<a 
    href="javascript:void(0);" 
    onclick="window.location.href='http://goo.gl';">My link</a>

我需要用 Javascript 替换我的链接document.title

4

1 回答 1

0

尝试这个

<a 
    href="javascript:void(0);" 
    onclick="window.location.href='http://goo.gl';">    
    <script>
        document.write(document.title);
    </script>
</a>
于 2013-07-21T02:10:46.560 回答