??
$.ajax({
url: "http://192.168.1.59:8888/app-tpl-webapp/tpl/design.html",
async:false,
type:‘post‘,
dataType:‘html‘,
success:function(data) {
console.log("-------------------------------------------------");
var htmlTextText = $(‘div‘).html(data);
console.log($(‘div‘).html(data).eq(1).find("#workspace-body"));
$(‘div‘).html(data).eq(1).find("link,script,style").each(function(index,domEle){
//$("head").append($(domEle));
console.log(domEle);
});
console.log("-------------------------------------------------");
//自己主动为布局文件的html中加上id
}
});
时间: 2024-11-06 20:51:03