このチュートリアルを読んでいるのですが、例に問題があります... localhost で例を実行しようとしましたが、いくつかのエラーが発生し、何が原因なのか本当にわかりません。WP の最初の投稿を取得する必要がありますが、代わりにUncaught ReferenceError: url is not defined というエラーが表示されます。任意の提案??? ありがとう!
<!DOCTYPE HTML>
<html>
<header>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script>
(url,target_div) {
var URL = url
jQuery.ajax({
url: URL,
dataType: 'json',
success: function(data) {
jQuery(target_div).html(data.post.content);
}
});
}
jQuery(document).ready(function() {
jQuery("#title").html("<h1>Hello World</h1>");
varurl = "http://localhost/phonegap/?json=get_post&dev=1&p=1";
vartarget_div = "#contents";
readSinglePost(url, target_div);
});
</script>
</header>
<body>
<div id="main">
<div id="title"></div>
</div>
</body>
</html>