我有負載( 'file.html #target .subTarget')不工作
我試圖
$(destino).load('all.html #reservas_1',function(){
console.log('cargado!');
alert($(destino).html()); //the alerts shows HTML
}).show();
,它工作正常,
但進入的HTML代碼包由至極有一個顯示器沒有,所以我想要
$(destino).load('all.html #reservas_1 .content',function(){
console.log('cargado!');
alert($(destino).html()); //the alert shows black string
}).show();
任何想法爲什麼?是因爲我使用一個類作爲選擇器或者是我無法加載一個子目標?
你能顯示來自all.html的內容嗎? – Thys
您的第一段代碼是否提醒具有「.content」類的元素? –
@AbdullahBattal是的它確實 –