当我使用 JQuery load() 函数在另一个页面中获取此页面时,我在页面中有一个带有“swiffy”的 html5 代码,它没有出现,这是什么原因?
我使用此代码:
$.ajax({
type: "POST",
url: URL,
data: { }
}).success(function(data, textStatus, jqXHR){
$('html').html(jqXHR.responseText);
var reponse = $(jqXHR.responseText);
var reponseScript = reponse.filter("script");
$.each(reponseScript, function(idx, val) {
eval(val.text);
});
});