2015-05-05 44 views
1

我想通過英特爾XDK將我的網站轉換爲移動應用程序。所以,如何在web view中做到這一點。我想加載當前web視圖上的URL,而不是在本地瀏覽器的新頁面上打開它。在Web查看加載網址英特爾Xdk

回答

3

簡單的方法是使用window.location=加載網址:

<!DOCTYPE html> 
<html> 
<head> 
    <meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=no"> 
    <script src="cordova.js"></script> 
</head> 
<body> 
    <script> 
     window.location = "http://www.yourwebsite.com"; 
    </script>  
</body> 
</html> 

更好的辦法是使用InAppBrowserconnection科爾多瓦插件加載的網站,這樣就可以處理連接丟失和重新加載,將加載完整的網站在後臺顯示,這裏是代碼:https://github.com/krisrak/html5-cordova-webapp