我在使用Phonegap的Android应用上调用jQuery。通过互联网,我的jQuery正在按预期阅读。
我的配置文件有:
<?xml version='1.0' encoding='utf-8'?>
<widget id="com.bunchofus.basicphonegap" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0">
<access origin="*" />
我的HTML和jQuery是:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/xml; charset=utf-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="msapplication-tap-highlight" content="no" />
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
<link rel="stylesheet" type="text/css" href="css/bunch.css" />
<script src="http://code.jquery.com/jquery-1.11.3.min.js" type="text/javascript"></script>
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery('#topbar').load('http://www.bunchofus.com/app/topbar.php');
jQuery('#posts').load('http://www.bunchofus.com/app/recentposts.php');
});
</script>
</head>
<body>
<div id="topbar">
</div>
<div id="posts">
</div>
</body>
对此的任何帮助将不胜感激。
由于
*** ****更新
我现在有了它的工作。在配置文件中,我需要添加:
缺口:插件名称=“cordova-plugin-whitelist”source =“npm”/&gt;
我的HTML是:
<script type="text/javascript" src="cordova.js"></script>
<script src="js/jquery-1.11.3.js" type="text/javascript"></script>
<script type="text/javascript">
document.addEventListener('deviceready', this.onDeviceReady, false);
function onDeviceReady() {
$('#posts').load('http://www.bunchofus.com/app/recentposts.php');
};
</script>
是否完全正确,它正在发挥作用!