<a
href="javascript:void(0);"
onclick="window.location.href='http://goo.gl';">My link</a>
我需要更換我的Javascript鏈接document.title
如何document.title時轉換成超鏈接
<a
href="javascript:void(0);"
onclick="window.location.href='http://goo.gl';">My link</a>
我需要更換我的Javascript鏈接document.title
如何document.title時轉換成超鏈接
試試這個
<a
href="javascript:void(0);"
onclick="window.location.href='http://goo.gl';">
<script>
document.write(document.title);
</script>
</a>
這是迫切的,請幫我出我的鏈接轉換爲當前頁面標題 – user2535327