回答編集履歴
1
URLがローカルのものになっていたため、一般的なURLにした
answer
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
document.addEventListener('deviceready', onDeviceReady, false);
|
8
8
|
function onDeviceReady() {
|
9
9
|
var iframe = document.createElement("iframe");
|
10
|
-
iframe.setAttribute("src", "http://
|
10
|
+
iframe.setAttribute("src", "http://path/to/my/website");
|
11
11
|
document.body.appendChild(iframe);
|
12
12
|
|
13
13
|
function inAppOpen(url){
|