このドキュメントを参照して、 UIWebViewに phoneGap を埋め込みました。
index.html には、次のサンプル コードを記述します。
<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>
$(document).ready(function() {
alert(“jquery loaded”);
});
</script>
</head>
<body>
<h2>This is a heading</h2>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<button>Click me</button>
</body>
webview がロードされた後、「本文」は表示できますが、アラートはポップアウトできません。jquery.js がロードされていないのでしょうか。それとも何か他のことが間違っていますか?
編集:「http:」を src に追加しましたが、機能しません。
ありがとう!