我把Ajax調用Ajax調用內內訪問元素,但在第二,該元件不被認可,例如:不能成功阿賈克斯
$.ajax({
url: 'controleFatAcoes.php',
type: 'post',
dataType: 'html',
data: {
acao: 'validaenviofat',
id_cliente: cli.id_cliente,
dt_fat: cli.id_fat
},
success: function(data) {
$.ajax({
url: 'controleFatAcoes.php',
data: {id_cliente: cli.id_cliente,
id_fat: cli.id_fat, acao: 'getdadosnf'},
type: 'post',
dataType: 'json',
success: function(dados) {
**$('#templateEmpresa').html(dados.empresa);**
}
)};
});
當我運行一個console.log($('#templateEmpresa'))
,我得到:
[context: document, selector: "#templateEmpresa", constructor: function, init: function, selector: ""…]
你可以在這裏粘貼ajax()結果標題嗎?這樣我們可以正確地看到ajax數據的結構。 – KevinIsNowOnline 2013-04-26 12:15:26