2014-03-13 91 views
0

我正在爲iPad創建html應用程序。我使用「最喜愛的」選項將webapp添加到主屏幕。但是,在完成此操作後,每個(內部)網址都會在新的Safari瀏覽器標籤中打開。我如何防止這種情況?目前,不可能使用導航到其他html文件的導航。如何防止iOS webapp中的鏈接在新的Safari標籤中打開

我發現這個代碼。 Hower我在每個網址上都收到「undefined」錯誤。

$(document).on("click", "a", function(event){ 
    page.event.preventDefault(); 
    time.location.href = $(event.target).attr("href"); 
}); 

回答

2

您使用的是pagetime變量,這似乎並沒有在任何地方定義。

$(document).on('click', 'a', function(e) { 
    e.preventDefault(); 
    document.location.href = $(this).attr('href'); 
}); 

就這麼簡單。

+1

非常感謝我的問題的解決方案! – Robbie

相關問題