How do insert the external code of register.html page in a div
when when it finishes successfully my call ajax
?
function onSuccess(data, status)
{
$.mobile.pageContainer = $("#content").pagecontainer();
$.mobile.pageContainer.pagecontainer("load", "register.html");
}
function onError(data, status)
{
// handle an error
}
I use pageContainer
but not load the html in #content div
答案 0 :(得分:0)
如果使用JQuery,您可以使用load方法加载外部页面/标记。这将允许您将其输出到div。
$( "#result" ).load( "ajax/test.html" );
有关详细信息,请参阅
答案 1 :(得分:0)
您需要使用enhanceWithin()否则将不会对新内容执行JQuery移动增强:
$.get('pagename.html', function (response) {
$('#result').html(response).enhanceWithin();
});