我尝试获取一些文件,但其中一种格式是HTML,应嵌入iFrame中。对于此请求,我使用AJAX和JSON作为数据。有谁知道如何调用HTML文件?现在它正在调用SWF文件。
if ( 'undefined' === typeof(fsStructure[strPath]) ) {
$.ajax({
'url' : '../php/navigator.php',
'dataType' : 'json',
'data' : {'tarFolder':strPath},
success : function( respObj, textStatus, jqXHR ) {
if ( 'undefined' !== typeof(respObj['status']) ) {
if (
('success' === respObj['status']) &&
('undefined' !== typeof(respObj['subfolders'])) &&
('undefined' !== typeof(respObj['subswfs'])) ) {
processNewDFData( respObj, $currentSelectItem, strPath );
} else {
alert( conf.messages.bad_response_format );
}
} else {
alert( conf.messages.bad_response_format );
}
},
error : function( jqXHR, textStatus, errorThrown ) {
alert( conf.messages.failed_ajax_request );
}
});
}
答案 0 :(得分:0)
您可以使用jquery get请求获取html文件。
$.get('/yourfile.html', function (data) {
console.log(data);
});