我正在嘗試在JS中創建一個鏈接,將該用戶的頁面從他來自哪裏。這是代碼。用javascript創建鏈接
<script language="javascript">
function Jump()
{
document.href=document.referrer;
}
</script>
下面是HTML,
<a href="#" onclick="Jump();">Skip and Continue</a>
現在,當用戶點擊這個鏈接時,沒有任何反應。請指導我在哪裏做錯了。由於
試試這個:document.location.href = document.referrer; – terabaud 2013-02-18 00:34:44
也許你的推薦人是空的 – cIph3r 2013-02-18 00:36:03
@terabaud:像魅力一樣工作。 – 2013-02-18 00:42:27