ajax を介して jquery モバイル ページを body タグに読み込もうとすると、コンテンツがまったく表示されませんdata-role="page"
。
なぜそれが起こるのですか?
JS:
$(document).ready( function() {
$.ajax({
type: 'POST',
url: 'http://enrico.bplaced.net/config.php',
dataType: 'html',
success: function(result) {
$('body').html(result);
},
error: function(obj, status, error) {
alert(status + ": " + error);
}
});
});
PHP:
print '<div data-role="page" id="startpage">This is not displayed.</div>';