我正在使用jQuery Mobile构建PhoneGap应用程序。我希望应用程序从外部源加载html页面并将其放到用户单击链接的同一html页面的“content”div中(但是到JQM的另一个“page”div)。
这是链接的点击事件功能:
$('#bookings_link').click(function(){'
$("#booking_content").load("http://www.pagetoload.com",function(){
$('#booking_content').trigger("pagecreate").trigger("refresh");
$.mobile.changePage( $("#bookings"), { transition: "slideup"} );
})
我也试过使用jQueryMobile的$ .mobile.loadPage函数:
$.mobile.loadPage("http://www.pagetoload.com",{pageContainer: $('#booking_content')});
$.mobile.changePage( $("#bookings"), { transition: "slideup"} );
使用jQuery的加载方法,我收到以下错误消息: 未捕获的TypeError:对象[object DOMWindow]在文件中没有方法'addEvent': 和 “未知的铬eroor:-6”
我还尝试将逻辑包含在pagebeforechange-loop(http://jquerymobile.com/demos/1.0/docs/pages/page-dynamic.html)中,但没有结果。 从那以后,该应用程序说: *未捕获的TypeError:无法在file:///android_asset/www/jquery.mobile-1.1.1.min.js读取未定义的属性'options':81 *
我已为跨域链接设置了$ .support.cors和$ .mobile.allowCrossDomainPages设置。
我正在使用jquerymobile 1.1.1和jquery的核心1.7.1。我正在使用Android SKD api 16级AVD进行测试。
一个奇怪的事情是我使用相同的逻辑使页面加载功能更早,但由于我没有使用SVN,我无法检查这里的错误在哪里。
我完全坚持这一点,如果有人能告诉我正确的方向,我将非常感激。
答案 0 :(得分:0)
我认为您正在描述Phonegap childbrowser plugin的功能,请查看:-)。
答案 1 :(得分:0)
这是我的解决方案。我调用函数 app_getPage(filePath)来加载带有页面内容的文本字符串。然后我使用JQUERY更新<div>
中的HTML,如下所示:
// Fetch a page into a var
var pageText = app_getPage('pages/test.html');
// Did it work?
if(pageText)
{
// Yes it did, stick it out there
$('#appTestDiv').html(pageText);
$('#appMainDiv').trigger('create'); // Probably not necessary
}
else
{
// No good so handle the failure here
app_doEndOfWorldPanicRebootAndMeltDown();
}
请注意,在我的示例中,下面的函数引用了 appData.PageTopTag 和 appData.PageBottomTag ,我在<body>
标记内部使用了这些,以便我可以剥离封闭的文档元素。在这种情况下,它们分别包含<!--FooTop-->
和<!--FooBottom-->
。通过这种方式,我可以使用自己喜欢的HTML编辑器来创建我想要加载的内容,而不用担心它添加到我的页面中的所有垃圾。我还使用 appData.Debug 来判断我是否处于调试模式,以便将垃圾邮件发送到控制台。
function app_getPage(filePath)
{
// Get the file name to load
if(appData.Debug) console.log(arguments.callee.name + ":LoadFile:" + filePath);
xmlhttp = new XMLHttpRequest();
xmlhttp.open("GET",filePath,false);
xmlhttp.send(null);
// Did we get the file?
if(xmlhttp.status != 0)
{
// Yes, remember it
var fileContent = xmlhttp.responseText;
if(appData.Debug) console.log("LoadFile-Success");
}
else
{
// No, return false
if(appData.Debug) console.log("LoadFile-Failure");
return false;
}
if(appData.Debug) console.log("FileContent-Original:" + fileContent);
// Get the indexes of the head and tails
var indexHead = fileContent.indexOf(appData.PageTopTag);
indexHead = indexHead >= 0 ? indexHead : 0;
var indexTail = fileContent.indexOf(appData.PageBottomTag);
indexTail = indexTail >= 0 ? indexTail : fileContent.length();
// Now strip it
fileContent = fileContent.substr(indexHead,indexTail);
if(appData.Debug) console.log("FileContent-Stripped:" + fileContent);
// Return the data
return fileContent;
}
因此,如果'page / test.html'包含以下内容:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Title Foo</title>
</head>
<body>
<!--FooTop-->
<div data-role="controlgroup" data-type="horizontal" style="text-align: center" data-mini="true">
<a data-role="button" href="geo:42.374260,-71.120824?z=2">Zoom=2</a>
<a data-role="button" href="geo:42.374260,-71.120824?z=12">Zoom=12</a>
<a data-role="button" href="geo:42.374260,-71.120824?z=23">Zoom=23</a>
</div>
<!--FooBottom-->
</body>
</html>
您将 <div id="appTestDiv" data-role="content"></div>
加载:
<div data-role="controlgroup" data-type="horizontal" style="text-align: center" data-mini="true">
<a data-role="button" href="geo:42.374260,-71.120824?z=2">Zoom=2</a>
<a data-role="button" href="geo:42.374260,-71.120824?z=12">Zoom=12</a>
<a data-role="button" href="geo:42.374260,-71.120824?z=23">Zoom=23</a>
</div>
我知道有更简洁的方法可以做到这一点,大多数人都讨厌我的格式,但这对我有用,干净且易于阅读。