ajax 呼び出し内に ajax 呼び出しを入れていますが、2 番目の要素は認識されていません。例:
$.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: ""…]