如何在超链接中转换document.title

时间:2013-07-21 02:03:55

标签: javascript html hyperlink

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

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

1 个答案:

答案 0 :(得分:0)

试试这个

<a 
    href="javascript:void(0);" 
    onclick="window.location.href='http://goo.gl';">    
    <script>
        document.write(document.title);
    </script>
</a>