我想創建與導航索引點擊將加載通過Ajax而不是去到另一個HTMLPhoneGap的導航阿賈克斯
頁面時,這是我的javascipt的:
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript">
function getPage(){
$.ajax({
type: 'post',
url: 'places.html',
success: function(html)
{
$("#response").fadeIn("slow");
$("#response").html(html);
}
});
return false;
}
</script>
我有一個調用這個
<a href="" onclick="getPage();">get page</a>
這個工作了XAMPP本地主機,但似乎在PhoneGap的生成錯誤的href
Uncaught ReferenceError: $ is not defined at file:///android_asset/www/index.html:129
這哪裏是$就位於
的phonegap項目中文件的路徑是否正確? – dan 2013-02-13 08:41:35