我需要将其他网站内的文本放入我的主网站。如果我使用控制台日志,我得到了我想要的数据,所以代码是正确的。无论我何时无法在HTML中插入,我都希望在
中插入数据中的数据 "$('.div-contandor .contador-numeros.col-md-8 span')"
$.ajax({
url: 'https://crossorigin.me/http://url',
type: "GET",
dataType: 'html',
crossDomain: true,
success: function(data){
console.log( $(data).find('span').text() );
// this works and it gives me the number I want to insert in my own span
//This does not work and the html looks blank.
$('.div-contandor .contador-numeros.col-md-8 span').html( $(data).find('span').text() );
}
});